1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +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:
jani@hynda.(none)
2003-03-22 20:34:20 +02:00
parent 6112e67d64
commit a7f632d7a8
16 changed files with 44 additions and 44 deletions

View File

@ -96,7 +96,7 @@ KEY k4 (assignment),
KEY ticket (ticket)
) TYPE=MyISAM;
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;
status