Skip to content

Commit

Permalink
restore default.test, default.result after MDEV-23597 c47e4aa commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarrior committed Oct 20, 2021
1 parent 1a54cf6 commit a8401ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mysql-test/r/default.result
Original file line number Diff line number Diff line change
Expand Up @@ -3089,8 +3089,8 @@ DROP TABLE t1;
#
# Collations
#
CREATE TABLE t1 (a VARCHAR(20) CHARACTER SET latin1 DEFAULT CONCAT('�')) CHARACTER SET koi8r COLLATE koi8r_bin;
ERROR 22007: Encountered illegal value '�' when converting to koi8r
CREATE TABLE t1 (a VARCHAR(20) CHARACTER SET latin1 DEFAULT CONCAT('�')) CHARACTER SET koi8r COLLATE koi8r_bin;
ERROR 22007: Encountered illegal value '�' when converting to koi8r
CREATE OR REPLACE TABLE t1 (a char(2) default concat('A') COLLATE utf8mb4_unicode_ci);
SHOW CREATE TABLE t1;
Table Create Table
Expand Down
2 changes: 1 addition & 1 deletion mysql-test/t/default.test
Original file line number Diff line number Diff line change
Expand Up @@ -1855,7 +1855,7 @@ DROP TABLE t1;
--echo #

--error ER_BAD_DATA
CREATE TABLE t1 (a VARCHAR(20) CHARACTER SET latin1 DEFAULT CONCAT('�')) CHARACTER SET koi8r COLLATE koi8r_bin;
CREATE TABLE t1 (a VARCHAR(20) CHARACTER SET latin1 DEFAULT CONCAT('�')) CHARACTER SET koi8r COLLATE koi8r_bin;
CREATE OR REPLACE TABLE t1 (a char(2) default concat('A') COLLATE utf8mb4_unicode_ci);
SHOW CREATE TABLE t1;
DROP TABLE t1;
Expand Down

0 comments on commit a8401ad

Please sign in to comment.