diff options
author | unknown <jani@hynda.(none)> | 2003-03-22 20:34:20 +0200 |
---|---|---|
committer | unknown <jani@hynda.(none)> | 2003-03-22 20:34:20 +0200 |
commit | c1719ad057d0bfa3bc4a40d01c604193c91a5659 (patch) | |
tree | 1b9e4699601c329a0eab8e8bccb8e0fdb7d74b3f /mysql-test/r/bdb-crash.result | |
parent | ebedd1521c19f9a6a2025d5c1c5be751cdb7b636 (diff) | |
download | mariadb-git-c1719ad057d0bfa3bc4a40d01c604193c91a5659.tar.gz |
Changed some tests to pass with new auto_increment handling,
e.g. default value is not accepted with auto_increment anymore.
Diffstat (limited to 'mysql-test/r/bdb-crash.result')
-rw-r--r-- | mysql-test/r/bdb-crash.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/bdb-crash.result b/mysql-test/r/bdb-crash.result index 42c826d55da..5079368ea21 100644 --- a/mysql-test/r/bdb-crash.result +++ b/mysql-test/r/bdb-crash.result @@ -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, |