1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Update test results

mysql-test/r/func_group.result:
  Update results
This commit is contained in:
unknown
2005-02-04 12:59:02 -08:00
parent 12c522515f
commit 7a3c7a7f7c

View File

@ -742,10 +742,10 @@ 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 NO 0000-00-00 00:00:00
drop table t2;
create table t2 select f2 from (select 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 NO 0000-00-00 00:00:00
drop table t2, t1;