1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Changed some tests to pass with new auto_increment handling,

e.g. default value is not accepted with auto_increment anymore.
This commit is contained in:
unknown
2003-03-22 20:34:20 +02:00
parent ebedd1521c
commit c1719ad057
16 changed files with 44 additions and 44 deletions

View File

@ -15,7 +15,7 @@ INSERT INTO t1 VALUES (2,6,'60671515','Y');
INSERT INTO t1 VALUES (2,7,'60671569','Y');
INSERT INTO t1 VALUES (2,3,'dd','Y');
CREATE TABLE t2 (
id int(6) DEFAULT '0' NOT NULL auto_increment,
id int(6) NOT NULL auto_increment,
description varchar(40) NOT NULL,
idform varchar(40),
ordre int(6) unsigned DEFAULT '0' NOT NULL,