mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-21 19:45:56 +03:00
23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug3203.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
--disable_warnings
|
|
drop table if exists bug3203;
|
|
--enable_warnings
|
|
|
|
create table bug3203 (c1 varchar(20))engine=columnstore;
|
|
select * from bug3203 where c1 = 'x';
|
|
|
|
--disable_warnings
|
|
drop table if exists bug3203;
|
|
--enable_warnings
|
|
#
|
|
|