diff options
author | monty@narttu.mysql.fi <> | 2003-02-27 03:49:26 +0200 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-02-27 03:49:26 +0200 |
commit | 0197fc78c91216ad866b801e7a4f880522ab5656 (patch) | |
tree | 0be3851671c59db010c557b551f49cc78c27f79a /mysql-test/r/bigint.result | |
parent | 3b073a08e0dd99df731033339c0e29ff7c07c101 (diff) | |
parent | c20453ba9a0aea9c8d236f6bc42dc9be91cff6a4 (diff) | |
download | mariadb-git-0197fc78c91216ad866b801e7a4f880522ab5656.tar.gz |
Merge with 4.0
Diffstat (limited to 'mysql-test/r/bigint.result')
-rw-r--r-- | mysql-test/r/bigint.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/bigint.result b/mysql-test/r/bigint.result index e49e39bbbf6..12dc146ba2b 100644 --- a/mysql-test/r/bigint.result +++ b/mysql-test/r/bigint.result @@ -7,13 +7,13 @@ select 9223372036854775807,-009223372036854775808; 9223372036854775807 -9223372036854775808 select +9999999999999999999,-9999999999999999999; +9999999999999999999 -9999999999999999999 -10000000000000000000 -10000000000000000000 +9999999999999999999 -10000000000000000000 select cast(9223372036854775808 as unsigned)+1; cast(9223372036854775808 as unsigned)+1 9223372036854775809 select 9223372036854775808+1; 9223372036854775808+1 -9223372036854775808 +9223372036854775809 create table t1 (a bigint unsigned not null, primary key(a)); insert into t1 values (18446744073709551615), (0xFFFFFFFFFFFFFFFE); select * from t1; |