diff options
author | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-10 16:22:38 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/hfmain.(none)> | 2007-05-10 16:22:38 +0500 |
commit | f1dbb95b1e7321d8f67a88a4a526d84f14b61c6b (patch) | |
tree | 67407778ced61d795d70bc0a992903697f5f004a /mysql-test/r/bigint.result | |
parent | eb5b5ad4caae2a62749ecba0252e98d6255ed5f7 (diff) | |
download | mariadb-git-f1dbb95b1e7321d8f67a88a4a526d84f14b61c6b.tar.gz |
bigint.test made ps-protocol consistent
mysql-test/r/bigint.result:
test result fixed
mysql-test/t/bigint.test:
testcase made ps-protocol consistent
Diffstat (limited to 'mysql-test/r/bigint.result')
-rw-r--r-- | mysql-test/r/bigint.result | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mysql-test/r/bigint.result b/mysql-test/r/bigint.result index 7d105cae19d..a70c6b3df7d 100644 --- a/mysql-test/r/bigint.result +++ b/mysql-test/r/bigint.result @@ -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; |