summaryrefslogtreecommitdiff
path: root/mysql-test/suite/funcs_1/r/is_tables.result
diff options
context:
space:
mode:
authorSergey Glukhov <Sergey.Glukhov@sun.com>2008-11-13 12:38:30 +0400
committerSergey Glukhov <Sergey.Glukhov@sun.com>2008-11-13 12:38:30 +0400
commit029def6c8aec8aead1098ece577fa3a26fefa7a5 (patch)
treea83499e31c11d7ee831485c49f5e2e5de14118cb /mysql-test/suite/funcs_1/r/is_tables.result
parent50afc54efa24f82bd5493d227b34ca1dd3faa5f6 (diff)
downloadmariadb-git-029def6c8aec8aead1098ece577fa3a26fefa7a5.tar.gz
Bug#36035 I_S.TABLES.UPDATE_TIME not being set on INSERT for Windows
added FLUSH TABLES after INSERT because UPDATE_TIME is updated with delay on Win. mysql-test/suite/funcs_1/datadict/is_tables.inc: test fix mysql-test/suite/funcs_1/r/is_tables.result: result fix
Diffstat (limited to 'mysql-test/suite/funcs_1/r/is_tables.result')
-rw-r--r--mysql-test/suite/funcs_1/r/is_tables.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/suite/funcs_1/r/is_tables.result b/mysql-test/suite/funcs_1/r/is_tables.result
index 1ed97e52c6c..ab45ca509e7 100644
--- a/mysql-test/suite/funcs_1/r/is_tables.result
+++ b/mysql-test/suite/funcs_1/r/is_tables.result
@@ -310,6 +310,7 @@ SELECT UPDATE_TIME, checksum INTO @UPDATE_TIME, @checksum
FROM information_schema.tables
WHERE table_name = 't1_my_tablex';
INSERT INTO db_datadict.t1_my_tablex SET f1 = 3;
+FLUSH TABLES;
SELECT UPDATE_TIME > @UPDATE_TIME
AS "Is current UPDATE_TIME bigger than before last INSERT?"
FROM information_schema.tables