You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-15 22:22:17 +03:00
18 lines
367 B
SQL
Executable File
18 lines
367 B
SQL
Executable File
drop table if exists region1;
|
|
create table region1
|
|
(
|
|
r_regionkey int,
|
|
r_name char(25),
|
|
r_comment varchar(152)
|
|
) engine=infinidb;
|
|
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;
|
|
drop table region1;
|
|
|