diff options
author | evgen@moonbone.local <> | 2007-05-30 19:35:35 +0400 |
---|---|---|
committer | evgen@moonbone.local <> | 2007-05-30 19:35:35 +0400 |
commit | 75afe5cab587848b892e13731e63fe1b2b6c61e8 (patch) | |
tree | 9cc17888a2b22fe163b087455d74766f17c0a8aa /mysql-test/r/view.result | |
parent | 51de1c57084fa606a5033e6a8f8d4607899402e8 (diff) | |
parent | 22c1bfbbc9b978e9f53874a8076bfea2a7af20d0 (diff) | |
download | mariadb-git-75afe5cab587848b892e13731e63fe1b2b6c61e8.tar.gz |
Merge moonbone.local:/mnt/gentoo64/work/bk-trees/mysql-5.0-opt
into moonbone.local:/mnt/gentoo64/work/test-5.1-opt-mysql
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 21dd5330945..238e330710c 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -2771,7 +2771,7 @@ CREATE TABLE t1 (i int, j int); CREATE VIEW v1 AS SELECT COALESCE(i,j) FROM t1; DESCRIBE v1; Field Type Null Key Default Extra -COALESCE(i,j) int(11) YES NULL +COALESCE(i,j) bigint(11) YES NULL CREATE TABLE t2 SELECT COALESCE(i,j) FROM t1; DESCRIBE t2; Field Type Null Key Default Extra |