diff options
author | unknown <venu@myvenu.com> | 2003-05-21 01:21:06 -0700 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-05-21 01:21:06 -0700 |
commit | 927a0c185c933ec5cccb97bd110da4d05ce82e0e (patch) | |
tree | 5caccb610827248c4e9755d600d633cbb4d22d85 /mysql-test | |
parent | 06b60afc198d045b602bfc122c9112610e75271f (diff) | |
download | mariadb-git-927a0c185c933ec5cccb97bd110da4d05ce82e0e.tar.gz |
Fix merge conflict by changing warning codes to new one
mysql-test/t/warnings.test:
Fix merge conflict by changing warning code
mysql-test/r/create.result:
Fix merge conflict
mysql-test/r/warnings.result:
Fix merge conflict
sql/share/english/errmsg.txt:
Fix the merge conflict
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/create.result | 2 | ||||
-rw-r--r-- | mysql-test/r/warnings.result | 1 | ||||
-rw-r--r-- | mysql-test/t/warnings.test | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index f5394e0ddf9..f711c8960bc 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -272,7 +272,7 @@ SELECT @@table_type; GEMINI CREATE TABLE t1 (a int not null); Warnings: -Warning 1259 Using storage engine MYISAM for table 't1' +Warning 1264 Using storage engine MYISAM for table 't1' show create table t1; Table Create Table t1 CREATE TABLE `t1` ( diff --git a/mysql-test/r/warnings.result b/mysql-test/r/warnings.result index 5920c87d20a..add9051ddfb 100644 --- a/mysql-test/r/warnings.result +++ b/mysql-test/r/warnings.result @@ -109,6 +109,7 @@ Warning 1263 Data truncated for column 'b' at row 10 select @@warning_count; @@warning_count 50 +drop table t1; create table t1 (id int) type=isam; Warnings: Warning 1264 Using storage engine MYISAM for table 't1' diff --git a/mysql-test/t/warnings.test b/mysql-test/t/warnings.test index 16a9b5d11e6..6374fbf83ac 100644 --- a/mysql-test/t/warnings.test +++ b/mysql-test/t/warnings.test @@ -74,6 +74,7 @@ select @@warning_count; # # Test for handler type # +drop table t1; create table t1 (id int) type=isam; alter table t1 type=isam; drop table t1; |