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

@ -1,6 +1,6 @@
drop table if exists t1;
CREATE TABLE t1 (
ChargeID int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
ChargeID int(10) unsigned NOT NULL auto_increment,
ServiceID int(10) unsigned DEFAULT '0' NOT NULL,
ChargeDate date DEFAULT '0000-00-00' NOT NULL,
ChargeAmount decimal(20,2) DEFAULT '0.00' NOT NULL,