summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_temporary.result
diff options
context:
space:
mode:
authorGeorgi Kodinov <kgeorge@mysql.com>2008-10-07 19:54:12 +0300
committerGeorgi Kodinov <kgeorge@mysql.com>2008-10-07 19:54:12 +0300
commit4d7ad72e52db47b6d8364c34dbfb206c40cb4aad (patch)
treeefd7fe2287aa9f16d35c65055d31a172322f411c /mysql-test/suite/rpl/r/rpl_temporary.result
parente9ff58bb54a680607c008cdeb606241c7e30ad1f (diff)
downloadmariadb-git-4d7ad72e52db47b6d8364c34dbfb206c40cb4aad.tar.gz
fixed test suite failures in 5.1-bugteam
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_temporary.result')
-rw-r--r--mysql-test/suite/rpl/r/rpl_temporary.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_temporary.result b/mysql-test/suite/rpl/r/rpl_temporary.result
index 03d2ca660dc..d8fea78ecb4 100644
--- a/mysql-test/suite/rpl/r/rpl_temporary.result
+++ b/mysql-test/suite/rpl/r/rpl_temporary.result
@@ -24,6 +24,9 @@ drop table if exists t1,t2;
create table t1(f int);
create table t2(f int);
insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
+SELECT COUNT(*) FROM t1;
+COUNT(*)
+10
create temporary table t3(f int);
insert into t3 select * from t1 where f<6;
create temporary table t3(f int);