mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fix merge conflict by changing warning codes to new one
This commit is contained in:
@ -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` (
|
||||
|
@ -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'
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user