diff options
Diffstat (limited to 'mysql-test/suite/vcol/r/update_binlog.result')
-rw-r--r-- | mysql-test/suite/vcol/r/update_binlog.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/vcol/r/update_binlog.result b/mysql-test/suite/vcol/r/update_binlog.result index 822381a1944..14aa50b7616 100644 --- a/mysql-test/suite/vcol/r/update_binlog.result +++ b/mysql-test/suite/vcol/r/update_binlog.result @@ -19,7 +19,7 @@ t1 CREATE TABLE `t1` ( `p` varchar(20) GENERATED ALWAYS AS (rtrim(`y`)) VIRTUAL, `y` char(20) DEFAULT NULL, KEY `p` (`p`,`c`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 +) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci insert into t1 (a,y) values(1, "yyy"); update t1 set a = 100 where a = 1; check table t1; @@ -199,7 +199,7 @@ t1 CREATE TABLE `t1` ( `p` varchar(20) GENERATED ALWAYS AS (rtrim(`y`)) VIRTUAL, `y` char(20) DEFAULT NULL, KEY `p` (`p`,`c`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 +) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci insert into t1 (a,y) values(1, "yyy"); update t1 set a = 100 where a = 1; check table t1; |