1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-01 06:21:41 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/devregression/t/mcs7172_regression_bug5230.test

35 lines
748 B
Plaintext

# -------------------------------------------------------------- #
# Test case migrated from regression test suite: bug5230.sql
#
# Author: Daniel Lee, daniel.lee@mariadb.com
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
#
USE tpch1;
#
--disable_warnings
drop table if exists region1;
--enable_warnings
create table region1
(
r_regionkey int,
r_name char(25),
r_comment varchar(152)
) engine=columnstore;
start transaction;
insert into region1 select * from tpch1.region;
rollback;
select * from region1;
start transaction;
insert into region1 select * from tpch1.region;
commit;
select * from region1;
--disable_warnings
drop table region1;
--enable_warnings
#