diff options
author | monty@mashka.mysql.fi <> | 2003-03-26 18:37:38 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-03-26 18:37:38 +0200 |
commit | 3bed7a6131bb688e3dbb5f11386d7641db356e6e (patch) | |
tree | 007e99eab2948fed93bba975a04801b24ba9c92a /mysql-test/t/update.test | |
parent | a55138fd9461af89068a63ac982539fee91c80c9 (diff) | |
parent | ff12a11829eddda1a69fed1bafb2230e009165fc (diff) | |
download | mariadb-git-3bed7a6131bb688e3dbb5f11386d7641db356e6e.tar.gz |
Merge with 4.0.13
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 31d22c1f850..6a7eac41a96 100644 --- a/mysql-test/t/update.test +++ b/mysql-test/t/update.test @@ -75,7 +75,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; |