From d12974339acec70abd0000100b5db23da856f660 Mon Sep 17 00:00:00 2001 From: Laurence Isla Date: Thu, 18 Nov 2021 17:34:51 -0500 Subject: [PATCH] Allow unknown for is operator --- api.rst | 2 +- releases/upcoming.rst | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/api.rst b/api.rst index 077a6665d..1feb1a60c 100644 --- a/api.rst +++ b/api.rst @@ -72,7 +72,7 @@ ilike :code:`ILIKE` ILIKE operator (use * in place of %) in :code:`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 :code:`IS` checking for exact equality (null,true,false) +is :code:`IS` checking for exact equality (null,true,false,unknown) fts :code:`@@` :ref:`fts` using to_tsquery plfts :code:`@@` :ref:`fts` using plainto_tsquery phfts :code:`@@` :ref:`fts` using phraseto_tsquery diff --git a/releases/upcoming.rst b/releases/upcoming.rst index 2a958c7e2..9cbba9fe3 100644 --- a/releases/upcoming.rst +++ b/releases/upcoming.rst @@ -38,6 +38,9 @@ Added * Allow calling a function with a :ref:`single unnamed parameter ` to POST raw ``json/jsonb``, ``bytea`` or ``text``. |br| -- `@steve-chavez `_ +* Allow specifying ``unknown`` for the ``is`` :ref:`operator `. + |br| -- `@steve-chavez `_ + * Documentation improvements + Added :ref:`nested_embedding` to the :ref:`resource_embedding` section.