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

Merge pull request #3509 from mariadb-corporation/MCOL-5978-remove_show_charset_vars

Remove SHOW VARIABLES LIKE 'character_set%' from the mcs228 test
This commit is contained in:
Timofey Turenko
2025-04-16 03:03:23 +03:00
committed by GitHub
2 changed files with 0 additions and 11 deletions

View File

@ -640,16 +640,6 @@ hello regexp_replace(hello, 'ა.ა', 'Достоевский')
привет привет
Γεια Γεια
სალამი სДостоевскийმი
SHOW VARIABLES LIKE 'character_set%';
Variable_name Value
character_set_client utf8mb3
character_set_connection utf8mb3
character_set_database utf8mb3
character_set_filesystem binary
character_set_results utf8mb3
character_set_server utf8mb3
character_set_system utf8mb3
character_sets_dir /usr/share/mysql/charsets/
CREATE TABLE tw(hello text) DEFAULT CHARSET=cp1251 ENGINE COLUMNSTORE;
INSERT INTO tw values(convert('привет' USING cp1251));
SELECT hello, regexp_instr(hello, convert('и.е' USING cp1251)) FROM tw;

View File

@ -179,7 +179,6 @@ SELECT hello, regexp_replace(hello, 'и.е', 'Достоевский') FROM t2;
SELECT hello, regexp_replace(hello, 'ε.α', 'Достоевский') FROM t2;
SELECT hello, regexp_replace(hello, 'ა.ა', 'Достоевский') FROM t2;
SHOW VARIABLES LIKE 'character_set%';
CREATE TABLE tw(hello text) DEFAULT CHARSET=cp1251 ENGINE COLUMNSTORE;
INSERT INTO tw values(convert('привет' USING cp1251));
SELECT hello, regexp_instr(hello, convert('и.е' USING cp1251)) FROM tw;