From e8cdd4463b8fc74811d25cd3aa3472eb5b777a02 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Sun, 18 Jun 2017 21:52:53 -0500 Subject: [PATCH] Example of quoted comma in IN operator --- api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.rst b/api.rst index 52b0e714b..51716b41f 100644 --- a/api.rst +++ b/api.rst @@ -46,7 +46,7 @@ lt less than neq not equal like LIKE operator (use * in place of %) ilike ILIKE operator (use * in place of %) -in one of a list of values e.g. :code:`?a=in.1,2,3` +in one of a list of values e.g. :code:`?a=in.1,2,3` – also supports commas in quoted strings like :code:`?a=in."hi,there","yes,you"` is checking for exact equality (null,true,false) @@ full-text search using to_tsquery @> contains e.g. :code:`?tags=@>.{example, new}`