1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-21 19:45:56 +03:00

26 lines
674 B
Plaintext

# -------------------------------------------------------------- #
# Test case migrated from regression test suite: bug3706.sql
#
# Author: Daniel Lee, daniel.lee@mariadb.com
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
#
USE tpch1;
#
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1(f1 varchar(5)) engine=columnstore;
insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1;
select * from t1 order by 1;
insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1;
select * from t1 order by 1;
--disable_warnings
drop table t1;
--enable_warnings
#