You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
More changes
This commit is contained in:
@ -8,14 +8,15 @@
|
||||
#
|
||||
USE tpch1;
|
||||
#
|
||||
/*
|
||||
* Bug 2976. Lost connection with from clause subselect against MyISAM tables in an InfiniDB instance.
|
||||
*/
|
||||
#
|
||||
# Bug 2976. Lost connection with from clause subselect against MyISAM tables in an InfiniDB instance.
|
||||
#
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists a;
|
||||
--disable_warnings
|
||||
drop table if exists b;
|
||||
--enable_warnings
|
||||
|
||||
create table a (c1 int)engine=myisam;
|
||||
create table b (c2 int)engine=myisam;
|
||||
insert into a values (1), (2);
|
||||
@ -25,9 +26,10 @@ select * from a, (select * from b) x;
|
||||
drop table a;
|
||||
drop table b;
|
||||
--enable_warnings
|
||||
/*
|
||||
* Skinit example.
|
||||
*/
|
||||
|
||||
#
|
||||
# Skinit example.
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists shipamounts;
|
||||
drop table if exists ship1;
|
||||
@ -105,9 +107,9 @@ drop table if exists shipamounts;
|
||||
drop table if exists ship1;
|
||||
drop table if exists ship2;
|
||||
--enable_warnings
|
||||
/*
|
||||
* Lurn India example.
|
||||
*/
|
||||
#
|
||||
# Lurn India example.
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists users;
|
||||
drop table if exists user_login_log;
|
||||
|
Reference in New Issue
Block a user