diff options
author | unknown <jimw@mysql.com> | 2005-03-03 09:59:38 -0800 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-03-03 09:59:38 -0800 |
commit | 80b474bfc0c77ae2a4b477b15ac6681b05d33e6d (patch) | |
tree | 78aa65d48fcd9bf107f7f7aafe945a0f8a98f78a /mysql-test/r | |
parent | ec75ead6ecdd4afd2cacd1bca14d541f0d581f0f (diff) | |
parent | de400bd5ac93cecdeef78d1ccd6315abdd956625 (diff) | |
download | mariadb-git-80b474bfc0c77ae2a4b477b15ac6681b05d33e6d.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0
into mysql.com:/home/jimw/my/mysql-5.0-clean
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/information_schema.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/information_schema.result b/mysql-test/r/information_schema.result index 121de940560..8e49a3df4c8 100644 --- a/mysql-test/r/information_schema.result +++ b/mysql-test/r/information_schema.result @@ -631,3 +631,10 @@ TABLES UPDATE_TIME datetime TABLES CHECK_TIME datetime ROUTINES CREATED datetime ROUTINES LAST_ALTERED datetime +SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES A +WHERE NOT EXISTS +(SELECT * FROM INFORMATION_SCHEMA.COLUMNS B +WHERE A.TABLE_SCHEMA = B.TABLE_SCHEMA +AND A.TABLE_NAME = B.TABLE_NAME); +COUNT(*) +0 |