You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-4674 Fix ColumnStore to run MTR tests in a build directory
This commit is contained in:
22
mysql-test/columnstore/basic/r/mcs120_empty_table.result
Normal file
22
mysql-test/columnstore/basic/r/mcs120_empty_table.result
Normal file
@ -0,0 +1,22 @@
|
||||
DROP DATABASE IF EXISTS mcs120_db;
|
||||
CREATE DATABASE mcs120_db;
|
||||
USE mcs120_db;
|
||||
CREATE TABLE t1 (x INT)ENGINE=Columnstore;
|
||||
SELECT * FROM t1;
|
||||
x
|
||||
SELECT COUNT(*) FROM t1;
|
||||
COUNT(*)
|
||||
0
|
||||
SHOW STATUS LIKE 'Empty_queries';
|
||||
Variable_name Value
|
||||
Empty_queries 1
|
||||
SELECT * FROM t1 LIMIT 0;
|
||||
x
|
||||
SHOW STATUS LIKE 'Empty_queries';
|
||||
Variable_name Value
|
||||
Empty_queries 2
|
||||
DROP TABLE t1;
|
||||
SHOW STATUS LIKE 'Empty_queries';
|
||||
Variable_name Value
|
||||
Empty_queries 2
|
||||
DROP DATABASE mcs120_db;
|
Reference in New Issue
Block a user