You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-24 08:41:09 +03:00
* Restructured test suites and added autopilot and extended suites * Updated autopilot with correct branch - develop * Moved setup test case to a 'setup' directory, for consistency * Fixed a path issue * Updated some tests cases to keep up with development Co-authored-by: root <root@rocky8.localdomain>
24 lines
635 B
Plaintext
24 lines
635 B
Plaintext
USE tpch1;
|
|
drop table if exists mcol829a;
|
|
Warnings:
|
|
Note 1051 Unknown table 'tpch1.mcol829a'
|
|
drop table if exists mcol829b;
|
|
Warnings:
|
|
Note 1051 Unknown table 'tpch1.mcol829b'
|
|
drop procedure if exists mcol829;
|
|
Warnings:
|
|
Note 1305 PROCEDURE tpch1.mcol829 does not exist
|
|
create table mcol829a (a int, b int) engine=columnstore;
|
|
create table mcol829b (a int, b int) engine=columnstore;
|
|
insert into mcol829a values (1,1),(2,2),(3,3);
|
|
create procedure mcol829() begin insert into mcol829b select * from mcol829a; end//
|
|
call mcol829();
|
|
select * from mcol829b;
|
|
a b
|
|
1 1
|
|
2 2
|
|
3 3
|
|
drop procedure mcol829;
|
|
drop table mcol829a;
|
|
drop table mcol829b;
|