diff options
author | unknown <jani@hynda.(none)> | 2003-03-22 20:34:20 +0200 |
---|---|---|
committer | unknown <jani@hynda.(none)> | 2003-03-22 20:34:20 +0200 |
commit | c1719ad057d0bfa3bc4a40d01c604193c91a5659 (patch) | |
tree | 1b9e4699601c329a0eab8e8bccb8e0fdb7d74b3f /mysql-test/t/update.test | |
parent | ebedd1521c19f9a6a2025d5c1c5be751cdb7b636 (diff) | |
download | mariadb-git-c1719ad057d0bfa3bc4a40d01c604193c91a5659.tar.gz |
Changed some tests to pass with new auto_increment handling,
e.g. default value is not accepted with auto_increment anymore.
Diffstat (limited to 'mysql-test/t/update.test')
-rw-r--r-- | mysql-test/t/update.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/update.test b/mysql-test/t/update.test index 5cbbd2a350e..76a27b62206 100644 --- a/mysql-test/t/update.test +++ b/mysql-test/t/update.test @@ -72,7 +72,7 @@ CREATE TABLE t1 ( INSERT INTO t1 VALUES (773,773,'','','',980257344,20010318180652,0,'Open',10,0,0,0,1,'','','','',''); -alter table t1 change lfdnr lfdnr int(10) unsigned default 0 not null auto_increment; +alter table t1 change lfdnr lfdnr int(10) unsigned not null auto_increment; update t1 set status=1 where type='Open'; select status from t1; drop table t1; |