You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
22 lines
702 B
Plaintext
22 lines
702 B
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug3262.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
--source ../include/detect_maxscale.inc
|
|
|
|
#
|
|
USE tpch1;
|
|
#
|
|
--exec rm -f /tmp/natcount.tbl
|
|
select count(*) into outfile '/tmp/natcount.tbl' from nation;
|
|
select count(*) from nation;
|
|
--exec rm -f /var/lib/mysql/tpch1/nation.out
|
|
--exec rm -f /var/lib/mysql/tpch1c/nation.out
|
|
select count(*) into outfile 'nation.out' from nation;
|
|
--exec rm -f /var/lib/mysql/tpch1/nation.out
|
|
--exec rm -f /var/lib/mysql/tpch1c/nation.out
|
|
#
|