1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

bigint.test made ps-protocol consistent

This commit is contained in:
holyfoot/hf@mysql.com/hfmain.(none)
2007-05-10 16:22:38 +05:00
parent 39597b791b
commit 70ecc6fe86
2 changed files with 16 additions and 14 deletions

View File

@@ -352,13 +352,13 @@ select c1 mod 50 as result from t1;
result
6
drop table t1;
select -9223372036854775808 bi;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def bi 8 20 20 N 32897 0 63
bi
-9223372036854775808
select -9223372036854775809 bi;
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
def bi 246 20 20 N 129 0 63
bi
-9223372036854775809
create table t1 select -9223372036854775808 bi;
describe t1;
Field Type Null Key Default Extra
bi bigint(20) NO 0
drop table t1;
create table t1 select -9223372036854775809 bi;
describe t1;
Field Type Null Key Default Extra
bi decimal(19,0) NO 0
drop table t1;