summaryrefslogtreecommitdiff
path: root/mysql-test/t/limit.test
diff options
context:
space:
mode:
authorjimw@mysql.com <>2005-04-05 19:45:34 -0700
committerjimw@mysql.com <>2005-04-05 19:45:34 -0700
commitb95cb4e654e6e3f8fe799bc696b28f32bd08aff2 (patch)
treeb51927fa62cfdff1d3b10fd3678491743e115f13 /mysql-test/t/limit.test
parent08d51d05dc4373754ccaba6c958966bff525c552 (diff)
parent01ddc370f0eda1f605ca8be426f86acef9722ff1 (diff)
downloadmariadb-git-b95cb4e654e6e3f8fe799bc696b28f32bd08aff2.tar.gz
Merge
Diffstat (limited to 'mysql-test/t/limit.test')
-rw-r--r--mysql-test/t/limit.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/limit.test b/mysql-test/t/limit.test
index 28b287a5d4a..3dc56295375 100644
--- a/mysql-test/t/limit.test
+++ b/mysql-test/t/limit.test
@@ -6,7 +6,7 @@
drop table if exists t1;
--enable_warnings
-create table t1 (a int primary key, b int not null);
+create table t1 (a int not null default 0 primary key, b int not null default 0);
insert into t1 () values (); -- Testing default values
insert into t1 values (1,1),(2,1),(3,1);
update t1 set a=4 where b=1 limit 1;