diff options
author | bell@sanja.is.com.ua <> | 2005-03-23 08:36:48 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2005-03-23 08:36:48 +0200 |
commit | 4554b1f2632aa8b05edda4bdd56f9007b9c80448 (patch) | |
tree | 1a44d0ad7fd7c6b39daf960d107346319e9f5e74 /mysql-test/r/func_group.result | |
parent | 80d9cafa8fc3cae6b27928d376bcbb01212ce48b (diff) | |
download | mariadb-git-4554b1f2632aa8b05edda4bdd56f9007b9c80448.tar.gz |
fixed union types merging and table related metadata (BUG#8824)
Diffstat (limited to 'mysql-test/r/func_group.result')
-rw-r--r-- | mysql-test/r/func_group.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_group.result b/mysql-test/r/func_group.result index c22d0d3bec8..2fb18ca92c7 100644 --- a/mysql-test/r/func_group.result +++ b/mysql-test/r/func_group.result @@ -747,7 +747,7 @@ insert into t1 values (now()); create table t2 select f2 from (select max(now()) f2 from t1) a; show columns from t2; Field Type Null Key Default Extra -f2 datetime 0000-00-00 00:00:00 +f2 datetime YES NULL drop table t2; create table t2 select f2 from (select now() f2 from t1) a; show columns from t2; |