diff options
Diffstat (limited to 'mysql-test/suite/pbxt/r/compare.result')
-rw-r--r-- | mysql-test/suite/pbxt/r/compare.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/pbxt/r/compare.result b/mysql-test/suite/pbxt/r/compare.result index c141b255716..92e95e53db2 100644 --- a/mysql-test/suite/pbxt/r/compare.result +++ b/mysql-test/suite/pbxt/r/compare.result @@ -47,9 +47,9 @@ insert into t1 values (0x01,0x01); select * from t1 where a=b; a b Warnings: -Warning 1292 Truncated incorrect DOUBLE value: '' +Warning 1292 Truncated incorrect DOUBLE value: '\x01' select * from t1 where a=b and b=0x01; a b Warnings: -Warning 1292 Truncated incorrect DOUBLE value: '' +Warning 1292 Truncated incorrect DOUBLE value: '\x01' drop table if exists t1; |