Skip to content

Commit 2db3e3c

Browse files
authored
Update query.c
1 parent 9697403 commit 2db3e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ void extractClauseFromBooleanTest(Relids base_relids, BooleanTest *node, List **
514514
break;
515515
case IS_NOT_FALSE:
516516
opname = "IS NOT";
517-
val = (Expr *) makeConst(BOOLOID, -1, InvalidOid, sizeof(bool), BoolGetDatum(true), false, true);
517+
val = (Expr *) makeConst(BOOLOID, -1, InvalidOid, sizeof(bool), BoolGetDatum(false), false, true);
518518
break;
519519
case IS_UNKNOWN:
520520
opname = "IS";

0 commit comments

Comments
 (0)