aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/library/yql/tests/postgresql/patches/boolean.out.patch
blob: 41699dcb1eceffc8ff2315a730404f15f93b5ff7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- boolean.out
+++ boolean.out
@@ -469,7 +469,7 @@ FROM booltbl3 ORDER BY o;
 -- correct. Use a table as source to prevent constant simplification
 -- to interfer.
 CREATE TABLE booltbl4(isfalse bool, istrue bool, isnul bool);
-INSERT INTO booltbl4 VALUES (false, true, null);
+INSERT INTO booltbl4 (isfalse, istrue, isnul) VALUES (false, true, null);
 \pset null '(null)'
 -- AND expression need to return null if there's any nulls and not all
 -- of the value are true