Changeset: ca75c9ace7e8 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ca75c9ace7e8
Modified Files:
        
sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.sql
        
sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.stable.out
Branch: Oct2012
Log Message:

Added CHAR and CLOB tests for Bug 3168


diffs (31 lines):

diff --git 
a/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.sql 
b/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.sql
--- 
a/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.sql
+++ 
b/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.sql
@@ -1,3 +1,9 @@
 create table test3168 ( id int, name varchar(20) default null);
 insert into test3168 ( id ) values ( 1 );
 drop table test3168;
+create table test3168 ( id int, name char(20) default null);
+insert into test3168 ( id ) values ( 1 );
+drop table test3168;
+create table test3168 ( id int, name clob default null);
+insert into test3168 ( id ) values ( 1 );
+drop table test3168;
diff --git 
a/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.stable.out
 
b/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.stable.out
--- 
a/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.stable.out
+++ 
b/sql/test/BugTracker-2012/Tests/string-insert-default-null-crash.Bug-3168.stable.out
@@ -47,6 +47,14 @@ Ready.
 #insert into test3168 ( id ) values ( 1 );
 [ 1    ]
 #drop table test3168;
+#create table test3168 ( id int, name char(20) default null);
+#insert into test3168 ( id ) values ( 1 );
+[ 1    ]
+#drop table test3168;
+#create table test3168 ( id int, name clob default null);
+#insert into test3168 ( id ) values ( 1 );
+[ 1    ]
+#drop table test3168;
 
 # 14:36:32 >  
 # 14:36:32 >  "Done."
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to