1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

disable tests incompatible with Maxscale

This commit is contained in:
Timofey Turenko
2025-06-09 12:42:30 +03:00
committed by Leonid Fedorov
parent cfaeeeb449
commit 1640e87058
17 changed files with 123 additions and 7 deletions

View File

@ -6,15 +6,10 @@ SELECT a, b FROM test_collate ORDER BY a COLLATE latin1_german2_ci;
a b
1 2
2 4
SHOW WARNINGS;
Level Code Message
Note 1618 COLLATE is ignored in ColumnStore
SELECT a, b FROM test_collate ORDER BY a COLLATE latin1_german2_ci DESC;
a b
1 2
2 4
SHOW WARNINGS;
Level Code Message
DROP TABLE IF EXISTS test_collate;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (col1 CHAR(10)) CHARSET latin1 COLLATE latin1_bin ENGINE=columnstore;