mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-10 17:41:44 +03:00
21 lines
469 B
Plaintext
21 lines
469 B
Plaintext
#
|
|
# Test case migrated from regression test suite:
|
|
# ./mysql/queries/nightly/alltest/test023/q2.1.4.sql
|
|
#
|
|
# Author: Susil, susil.behera@mariadb.com
|
|
#
|
|
|
|
-- source ../include/have_columnstore.inc
|
|
|
|
USE tpch1;
|
|
|
|
--disable_warnings
|
|
CREATE TABLE IF NOT EXISTS mcol2219 (`t (space` int) engine=columnstore;
|
|
--enable_warnings
|
|
|
|
SELECT column_name FROM information_schema.columnstore_columns WHERE table_name='mcol2219';
|
|
--disable_warnings
|
|
DROP TABLE mcol2219;
|
|
--enable_warnings
|
|
#
|