diff options
author | Jorgen Loland <jorgen.loland@oracle.com> | 2010-11-04 13:36:36 +0100 |
---|---|---|
committer | Jorgen Loland <jorgen.loland@oracle.com> | 2010-11-04 13:36:36 +0100 |
commit | f0ce67873cd2eb2b6eb30ba1ecb0d3df5206d5a0 (patch) | |
tree | 5168a2583d3d36ba19fa6aa677919ac33ed409af /mysql-test/r/errors.result | |
parent | a9a6cd13ffc90d9c72ea208d5808c1328a801344 (diff) | |
download | mariadb-git-f0ce67873cd2eb2b6eb30ba1ecb0d3df5206d5a0.tar.gz |
Bug#57882 - Item_func_conv_charset::val_str(String*):
Assertion `fixed == 1' failed
Followup patch. Test case relied on system variable that is
only available if replication is compiled in. Replaced with
variable available in all builds.
mysql-test/r/errors.result:
Test case relied on system variable that is only available if
replication is compiled in. Replaced with variable available in
all builds.
mysql-test/t/errors.test:
Test case relied on system variable that is only available if
replication is compiled in. Replaced with variable available in
all builds.
Diffstat (limited to 'mysql-test/r/errors.result')
-rw-r--r-- | mysql-test/r/errors.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/errors.result b/mysql-test/r/errors.result index 43cabd28498..e6a1b492b39 100644 --- a/mysql-test/r/errors.result +++ b/mysql-test/r/errors.result @@ -141,7 +141,7 @@ DROP TABLE t1; SELECT (CONVERT('0' USING latin1) IN (CHAR(COT('v') USING utf8),'')); ERROR 22003: DOUBLE value is out of range in 'cot('v')' SET NAMES utf8 COLLATE utf8_latvian_ci ; -SELECT UPDATEXML(-73 * -2465717823867977728,@@global.slave_net_timeout,null); +SELECT UPDATEXML(-73 * -2465717823867977728,@@global.auto_increment_increment,null); ERROR 22003: BIGINT value is out of range in '(-(73) * -(2465717823867977728))' # # End Bug#57882 |