mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixup error number - Broke during merge
mysql-test/t/create.test: Fixup error number mysql-test/t/variables.test: Fixup error number
This commit is contained in:
@ -157,7 +157,7 @@ SELECT @@table_type;
|
|||||||
CREATE TABLE t1 (a int not null);
|
CREATE TABLE t1 (a int not null);
|
||||||
show create table t1;
|
show create table t1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
--error 1284
|
--error 1285
|
||||||
SET SESSION table_type="gemini";
|
SET SESSION table_type="gemini";
|
||||||
SELECT @@table_type;
|
SELECT @@table_type;
|
||||||
CREATE TABLE t1 (a int not null);
|
CREATE TABLE t1 (a int not null);
|
||||||
@ -277,7 +277,7 @@ SELECT @@table_type;
|
|||||||
CREATE TABLE t1 (a int not null);
|
CREATE TABLE t1 (a int not null);
|
||||||
show create table t1;
|
show create table t1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
--error 1284
|
--error 1285
|
||||||
SET SESSION table_type="gemini";
|
SET SESSION table_type="gemini";
|
||||||
SELECT @@table_type;
|
SELECT @@table_type;
|
||||||
CREATE TABLE t1 (a int not null);
|
CREATE TABLE t1 (a int not null);
|
||||||
|
@ -124,7 +124,7 @@ set big_tables="OFFF";
|
|||||||
set unknown_variable=1;
|
set unknown_variable=1;
|
||||||
--error 1232
|
--error 1232
|
||||||
set max_join_size="hello";
|
set max_join_size="hello";
|
||||||
--error 1284
|
--error 1285
|
||||||
set table_type=UNKNOWN_TABLE_TYPE;
|
set table_type=UNKNOWN_TABLE_TYPE;
|
||||||
--error 1231
|
--error 1231
|
||||||
set table_type=INNODB, big_tables=2;
|
set table_type=INNODB, big_tables=2;
|
||||||
|
Reference in New Issue
Block a user