diff options
author | kostja@bodhi.local <> | 2006-08-12 21:06:51 +0400 |
---|---|---|
committer | kostja@bodhi.local <> | 2006-08-12 21:06:51 +0400 |
commit | 04c97488f91c3db48be384c2ed14082dc6d6616b (patch) | |
tree | cccb1fdd583e353f4a229cbb0f9d585104db78f9 /mysql-test/r/mysqlcheck.result | |
parent | b341356abdfa869c71d42709a13c2192603fab1c (diff) | |
parent | 6691c623100134d666b142f5752fcc022bdd1ac9 (diff) | |
download | mariadb-git-04c97488f91c3db48be384c2ed14082dc6d6616b.tar.gz |
Merge bodhi.local:/opt/local/work/tmp_merge
into bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
Diffstat (limited to 'mysql-test/r/mysqlcheck.result')
-rw-r--r-- | mysql-test/r/mysqlcheck.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlcheck.result b/mysql-test/r/mysqlcheck.result index a3c14b13bde..a76402a87b0 100644 --- a/mysql-test/r/mysqlcheck.result +++ b/mysql-test/r/mysqlcheck.result @@ -48,3 +48,10 @@ mysql.time_zone_name OK mysql.time_zone_transition OK mysql.time_zone_transition_type OK mysql.user OK +create table t1 (a int); +create view v1 as select * from t1; +test.t1 OK +test.t1 OK +drop view v1; +drop table t1; +End of 5.0 tests |