1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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

@ -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,