diff options
author | unknown <kent@kent-amd64.(none)> | 2007-11-12 13:13:43 +0100 |
---|---|---|
committer | unknown <kent@kent-amd64.(none)> | 2007-11-12 13:13:43 +0100 |
commit | fc71ff899ba5247655bb9a03867e44ee13460f3e (patch) | |
tree | c22e5948f1ce83e38801865101d4ad71a62f10f2 /mysql-test/r/bigint.result | |
parent | 836398b98e73256bef89d50edd6bef14f25735c6 (diff) | |
parent | 568f624406fb6771f5815bbe6184de6909270488 (diff) | |
download | mariadb-git-fc71ff899ba5247655bb9a03867e44ee13460f3e.tar.gz |
Merge mysql.com:/home/kent/bk/bug30069/mysql-4.1-build
into mysql.com:/home/kent/bk/bug30069/mysql-5.0-build
mysql-test/t/bigint.test:
Auto merged
strings/ctype-simple.c:
Auto merged
mysql-test/r/bigint.result:
SCCS merged
Diffstat (limited to 'mysql-test/r/bigint.result')
-rw-r--r-- | mysql-test/r/bigint.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/bigint.result b/mysql-test/r/bigint.result index 064304b27aa..b0d114f1655 100644 --- a/mysql-test/r/bigint.result +++ b/mysql-test/r/bigint.result @@ -170,6 +170,12 @@ t2.value64=t1.value64; value64 value32 value64 value32 9223372036854775807 2 9223372036854775807 4 drop table t1, t2; +create table t1 (sint64 bigint not null); +insert into t1 values (-9223372036854775808); +select * from t1; +sint64 +-9223372036854775808 +drop table t1; create table t1 select 1 as 'a'; show create table t1; Table Create Table |