1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

after merge fix.

mysql-test/r/range.result:
  Fix for bug #22533: Traditional: Too-long bit value not rejected.
    - results adjusted.
This commit is contained in:
unknown
2007-01-19 12:19:53 +04:00
parent adfe34d91e
commit 7f5bcdaaa5

View File

@@ -504,8 +504,8 @@ select count(*) from t1 where x = 18446744073709551601;
count(*) count(*)
1 1
create table t2 (x bigint not null); create table t2 (x bigint not null);
insert into t2(x) values (0xfffffffffffffff0); insert into t2(x) values (-16);
insert into t2(x) values (0xfffffffffffffff1); insert into t2(x) values (-15);
select * from t2; select * from t2;
x x
-16 -16