Changeset: 5c6924998ff2 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5c6924998ff2 Modified Files: sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.sql sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.stable.out Branch: default Log Message:
approved output diffs (31 lines): diff --git a/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.sql b/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.sql --- a/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.sql +++ b/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.sql @@ -1,5 +1,5 @@ create table testjsonisnull(js json); - +insert into testjsonisnull values (NULL); select * from testjsonisnull where js is null; drop table testjsonisnull; diff --git a/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.stable.out b/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.stable.out --- a/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.stable.out +++ b/sql/test/BugTracker-2013/Tests/json_is_null.Bug-3406.stable.out @@ -55,11 +55,14 @@ Ready. # 13:09:26 > #create table testjsonisnull(js json); +#insert into testjsonisnull values (NULL); +[ 1 ] #select * from testjsonisnull where js is null; % sys.testjsonisnull # table_name -% boolean # type -% 5 # length -[ true ] +% js # name +% json # type +% 0 # length +[ NULL ] #drop table testjsonisnull; # 13:09:26 > _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
