diff options
author | holyfoot/hf@mysql.com/hfmain.(none) <> | 2007-05-10 16:22:38 +0500 |
---|---|---|
committer | holyfoot/hf@mysql.com/hfmain.(none) <> | 2007-05-10 16:22:38 +0500 |
commit | 70ecc6fe86ab215ad6e981dcaf15bb2ef33f3476 (patch) | |
tree | 67407778ced61d795d70bc0a992903697f5f004a /mysql-test/r/bigint.result | |
parent | 39597b791bc1f792fdb02364b825008fe8c402f8 (diff) | |
download | mariadb-git-70ecc6fe86ab215ad6e981dcaf15bb2ef33f3476.tar.gz |
bigint.test 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; |