1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

More disable tests in case of testing via Maxscale

This commit is contained in:
Timofey Turenko
2025-06-10 18:42:42 +03:00
committed by Leonid Fedorov
parent 1640e87058
commit 7fd29de377
10 changed files with 8 additions and 12 deletions

View File

@ -5,6 +5,7 @@
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
--source ../include/detect_maxscale.inc
#
USE tpch1;
#

View File

@ -5,6 +5,7 @@
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
--source ../include/detect_maxscale.inc
#
USE tpch1;
#

View File

@ -5,6 +5,7 @@
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
--source ../include/detect_maxscale.inc
#
USE tpch1;
#

View File

@ -5,6 +5,8 @@
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
--source ../include/detect_maxscale.inc
#
USE tpch1;
#

View File

@ -5,6 +5,7 @@
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
--source ../include/detect_maxscale.inc
#
USE tpch1;
#

View File

@ -5,6 +5,7 @@
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
--source ../include/detect_maxscale.inc
#
USE tpch1;
#

View File

@ -13,37 +13,29 @@ USE tpch1;
#--Test COLLATE in ORDER BY
--disable_warnings
DROP TABLE IF EXISTS test_collate;
--enable_warnings
CREATE TABLE test_collate (a INT, b INT) ENGINE=columnstore;
INSERT INTO test_collate VALUES (1,2), (2,4);
SELECT a, b FROM test_collate ORDER BY a COLLATE latin1_german2_ci;
SELECT a, b FROM test_collate ORDER BY a COLLATE latin1_german2_ci DESC;
--disable_warnings
DROP TABLE IF EXISTS test_collate;
--enable_warnings
#--Test COLLATE in table definition and column definition
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (col1 CHAR(10)) CHARSET latin1 COLLATE latin1_bin ENGINE=columnstore;
INSERT INTO t1 VALUES ('a'), ('1'), ('-1');
SELECT col1 FROM t1;
DESCRIBE t1;
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
CREATE TABLE t1 (col1 CHAR(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci) ENGINE=columnstore;
INSERT INTO t1 VALUES ('a'), ('1'), ('-1');
SELECT col1 FROM t1;
DESCRIBE t1;
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
#