mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
pure coverage test updates
This commit is contained in:
@@ -134,18 +134,22 @@ select * from t3;
|
||||
drop table t3;
|
||||
show create table t3;
|
||||
select * from t3;
|
||||
drop table t3;
|
||||
drop table t2, t3;
|
||||
drop database if exists test_$1;
|
||||
create database test_$1;
|
||||
drop table if exists test_$1.t3;
|
||||
create table test_$1.t3 like t1;
|
||||
create temporary table t3 like test_$1.t3;
|
||||
show create table t3;
|
||||
create table t2 like t3;
|
||||
show create table t2;
|
||||
select * from t2;
|
||||
create table t3 like t1;
|
||||
!$1050 create table t3 like test_$1.t3;
|
||||
--error 1044,1
|
||||
create table non_existing_database.t1 like t1;
|
||||
!$1051 create table t3 like non_existing_table;
|
||||
!$1050 create temporary table t3 like t1;
|
||||
!$1103 create table t3 like `a/a`;
|
||||
drop table t1, t2, t3;
|
||||
drop table t3;
|
||||
drop database test_$1;
|
||||
|
||||
Reference in New Issue
Block a user