diff options
author | unknown <ramil/ram@mysql.com/myoffice.izhnet.ru> | 2007-01-18 09:39:47 +0400 |
---|---|---|
committer | unknown <ramil/ram@mysql.com/myoffice.izhnet.ru> | 2007-01-18 09:39:47 +0400 |
commit | 2ca87ae30cb5a6edb629be35f8585e860acb11aa (patch) | |
tree | a9198331c9962c279bc2fc4b05565d29c98fa1b8 /mysql-test/t/select.test | |
parent | be820c11d045345aaefea21ead49cfac60b1c31c (diff) | |
parent | 0ce02f6d98b5eb94797a935e06fa89f37a241b52 (diff) | |
download | mariadb-git-2ca87ae30cb5a6edb629be35f8585e860acb11aa.tar.gz |
Merge mysql.com:/usr/home/ram/work/bug22533/my41-bug22533
into mysql.com:/usr/home/ram/work/bug22533/my50-bug22533
mysql-test/r/select.result:
resolve skipped
mysql-test/t/range.test:
merging
mysql-test/t/select.test:
merging
sql/item.cc:
merging
Diffstat (limited to 'mysql-test/t/select.test')
-rw-r--r-- | mysql-test/t/select.test | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/mysql-test/t/select.test b/mysql-test/t/select.test index 0f096d97d25..4209d23971b 100644 --- a/mysql-test/t/select.test +++ b/mysql-test/t/select.test @@ -2349,7 +2349,18 @@ select min(key1) from t1 where key1 >= 0.3762 and rand() + 0.5 >= 0.5; DROP TABLE t1,t2; --enable_ps_protocol -# End of 4.1 tests +# +# Bug #22533: storing large hex strings +# + +create table t1(a bigint unsigned, b bigint); +insert into t1 values (0xfffffffffffffffff, 0xfffffffffffffffff), + (0x10000000000000000, 0x10000000000000000), + (0x8fffffffffffffff, 0x8fffffffffffffff); +select hex(a), hex(b) from t1; +drop table t1; + +--echo End of 4.1 tests # # Test for bug #6474 |