feat: allow unknown on the is operator

Also make the IS values strict at the Parser level since IS cannot be
parametrized.
This commit is contained in:
steve-chavez
2021-11-18 17:01:58 -05:00
committed by Steve Chavez
parent 91689e28f0
commit bae5afbad6
8 changed files with 60 additions and 12 deletions
+6
View File
@@ -2417,3 +2417,9 @@ CREATE TABLE clientinfo (
, clientid int unique references client(id)
, other text
);
CREATE TABLE chores (
id int primary key
, name text
, done bool
);