mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-10 17:41:44 +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>
18 lines
422 B
SQL
Executable File
18 lines
422 B
SQL
Executable File
# create orders table
|
|
#
|
|
--disable_warnings
|
|
drop table if exists orders;
|
|
--enable_warnings
|
|
create table orders (
|
|
o_orderkey int,
|
|
o_custkey int,
|
|
o_orderstatus char (1),
|
|
o_totalprice decimal(12,2),
|
|
o_orderdate date,
|
|
o_orderpriority char (15),
|
|
o_clerk char (15),
|
|
o_shippriority int,
|
|
o_comment varchar (79)
|
|
) engine=columnstore;
|
|
SHOW CREATE TABLE orders;
|