Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
386f9d14
Commit
386f9d14
authored
Sep 13, 2019
by
Sachin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable part of binlog_table_map_optional_metadata.test (because of MDEV-20582)
parent
46a6cea5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
48 deletions
+27
-48
mysql-test/suite/binlog/r/binlog_table_map_optional_metadata.result
.../suite/binlog/r/binlog_table_map_optional_metadata.result
+0
-21
mysql-test/suite/binlog/t/binlog_table_map_optional_metadata.test
...st/suite/binlog/t/binlog_table_map_optional_metadata.test
+27
-27
No files found.
mysql-test/suite/binlog/r/binlog_table_map_optional_metadata.result
View file @
386f9d14
...
...
@@ -120,27 +120,6 @@ INSERT INTO t1 VALUES(1);
DROP TABLE t1;
RESET MASTER;
#
# Charsets can be printed correctly
#
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");
# Columns(`c_char_utf8` CHAR(10) CHARSET utf8 COLLATE utf8_general_ci,
# `c_varchar_utf8` VARCHAR(10) CHARSET utf8 COLLATE utf8_general_ci,
# `c_text_utf8` TEXT CHARSET utf8 COLLATE utf8_general_ci)
DROP TABLE t1;
RESET MASTER;
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");
# Columns(`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 COLLATE utf8mb4_general_ci)
DROP TABLE t1;
RESET MASTER;
#
# Blob and binary columns can be printed correctly
#
CREATE TABLE t1(c_binary BINARY(10), c_varbinary VARBINARY(10),
...
...
mysql-test/suite/binlog/t/binlog_table_map_optional_metadata.test
View file @
386f9d14
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment