diff options
Diffstat (limited to 'mysql-test/t/odbc.test')
-rw-r--r-- | mysql-test/t/odbc.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/odbc.test b/mysql-test/t/odbc.test index 4629a08fd3f..3e0fc214d3e 100644 --- a/mysql-test/t/odbc.test +++ b/mysql-test/t/odbc.test @@ -8,6 +8,7 @@ select {fn length("hello")}, { date "1997-10-20" }; # Test retreiving row with last insert_id value. # +drop table if exists t1; create table t1 (a int not null auto_increment,b int not null,primary key (a,b)); insert into t1 SET A=NULL,B=1; insert into t1 SET a=null,b=2; |