diff options
author | ramil/ram@myoffice.izhnet.ru <> | 2007-01-18 15:59:40 +0400 |
---|---|---|
committer | ramil/ram@myoffice.izhnet.ru <> | 2007-01-18 15:59:40 +0400 |
commit | 9d86d7e97b0350d6a83a269f689489872fed5d17 (patch) | |
tree | 605b91cc4bb432f46802020c94544f0e960f25fa /mysql-test/r/range.result | |
parent | a2303ea3feb0958c2c6c2e72a22c22b46923c456 (diff) | |
parent | c57442d6d82d8a74105c949682d165513f0e9a21 (diff) | |
download | mariadb-git-9d86d7e97b0350d6a83a269f689489872fed5d17.tar.gz |
Merge mysql.com:/usr/home/ram/work/bug22533/my50-bug22533
into mysql.com:/usr/home/ram/work/bug22533/my51-bug22533
Diffstat (limited to 'mysql-test/r/range.result')
-rw-r--r-- | mysql-test/r/range.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/range.result b/mysql-test/r/range.result index 04923c9e24c..7a280c2201c 100644 --- a/mysql-test/r/range.result +++ b/mysql-test/r/range.result @@ -521,8 +521,8 @@ select count(*) from t1 where x = 18446744073709551601; count(*) 1 create table t2 (x bigint not null); -insert into t2(x) values (cast(0xfffffffffffffff0+0 as signed)); -insert into t2(x) values (cast(0xfffffffffffffff1+0 as signed)); +insert into t2(x) values (-16); +insert into t2(x) values (-15); select * from t2; x -16 |