# -------------------------------------------------------------- # # Test case migrated from regression test suite: bug4373.sql # # Author: Daniel Lee, daniel.lee@mariadb.com # -------------------------------------------------------------- # # --source ../include/have_columnstore.inc # USE tpch1; # create table if not exists mkr (c1 int, select_b int) engine=columnstore; insert into mkr (c1, select_b) (select n_nationkey, n_regionkey from nation); select * from mkr; drop table mkr; #