diff options
author | unknown <monty@mysql.com> | 2003-12-18 15:24:21 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-12-18 15:24:21 +0200 |
commit | f562d0c2c3bbd1257b98a923539478ebf5b5e482 (patch) | |
tree | dab2559443276274b0996193046d39b601bc9b32 /mysql-test/r/auto_increment.result | |
parent | 15484ba20c887c7970b7f164c32aade2967c4b66 (diff) | |
download | mariadb-git-f562d0c2c3bbd1257b98a923539478ebf5b5e482.tar.gz |
Removed compiler warning
Fixed not updated test from last changeset
mysql-test/r/auto_increment.result:
Updated results
sql/mysqld.cc:
Cleaned up pid file handling (to remove compiler warning)
Diffstat (limited to 'mysql-test/r/auto_increment.result')
-rw-r--r-- | mysql-test/r/auto_increment.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/auto_increment.result b/mysql-test/r/auto_increment.result index cbd2d48b38d..2d6b058d9c5 100644 --- a/mysql-test/r/auto_increment.result +++ b/mysql-test/r/auto_increment.result @@ -118,7 +118,7 @@ a 1 2 drop table t1; -create table t1 (a int not null auto_increment primary key) /*!41002 type=heap */; +create table t1 (a int not null auto_increment primary key) /*!40102 type=heap */; insert into t1 values (NULL); insert into t1 values (-1); select last_insert_id(); |