1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Disable part of binlog_table_map_optional_metadata.test (because of MDEV-20582)

This commit is contained in:
Sachin
2019-09-13 16:01:44 +05:30
parent 46a6cea5c5
commit 386f9d14bd
2 changed files with 27 additions and 48 deletions

View File

@@ -114,34 +114,34 @@ INSERT INTO t1 VALUES(1);
--source include/print_optional_metadata.inc
DROP TABLE t1;
RESET MASTER;
# Work around the memory leak of MDEV-20582
#--echo #
#--echo # Charsets can be printed correctly
#--echo #
#CREATE TABLE t1(c_char_utf8 CHAR(10) CHARSET utf8,
# c_varchar_utf8 VARCHAR(10) CHARSET utf8,
# c_text_utf8 TEXT CHARSET utf8);
#
#INSERT INTO t1 VALUES("1", "2", "3");
#
## Charset set is printed with Default charset
#--source include/print_optional_metadata.inc
#
#DROP TABLE t1;
#RESET MASTER;
#
## Test collation number less than 250 and collation number greater than 250
#CREATE TABLE t1(c_utf8mb4_520 CHAR(10) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci,
# c_utf8mb4_0900 VARCHAR(10) CHARSET utf8mb4 COLLATE utf8mb4_polish_ci,
# c_utf8mb4_def TEXT CHARSET utf8mb4);
#
#INSERT INTO t1 VALUES("1", "2", "3");
--echo #
--echo # Charsets can be printed correctly
--echo #
CREATE TABLE t1(c_char_utf8 CHAR(10) CHARSET utf8,
c_varchar_utf8 VARCHAR(10) CHARSET utf8,
c_text_utf8 TEXT CHARSET utf8);
INSERT INTO t1 VALUES("1", "2", "3");
# Charset set is printed with Default charset
--source include/print_optional_metadata.inc
DROP TABLE t1;
RESET MASTER;
# Test collation number less than 250 and collation number greater than 250
CREATE TABLE t1(c_utf8mb4_520 CHAR(10) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci,
c_utf8mb4_0900 VARCHAR(10) CHARSET utf8mb4 COLLATE utf8mb4_polish_ci,
c_utf8mb4_def TEXT CHARSET utf8mb4);
INSERT INTO t1 VALUES("1", "2", "3");
# Charset set is printed without default charset
--source include/print_optional_metadata.inc
DROP TABLE t1;
RESET MASTER;
## Charset set is printed without default charset
#--source include/print_optional_metadata.inc
#
#DROP TABLE t1;
#RESET MASTER;
--echo #
--echo # Blob and binary columns can be printed correctly