mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-21 19:45:56 +03:00
23 lines
565 B
Plaintext
23 lines
565 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug4373.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
--enable_warnings
|
|
create table if not exists mkr (c1 int, select_b int) engine=columnstore;
|
|
--enable_warnings
|
|
|
|
insert into mkr (c1, select_b) (select n_nationkey, n_regionkey from nation);
|
|
select * from mkr;
|
|
|
|
--disable_warnings
|
|
drop table mkr;
|
|
--enable_warnings
|
|
#
|
|
|