~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to mysql-test/t/init_connection_query_cache.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- source include/have_query_cache.inc
 
2
 
 
3
--echo #
 
4
--echo # MDEV-4520: Assertion `0' fails in Query_cache::end_of_result on
 
5
--echo # concurrent drop event and event execution
 
6
--echo #
 
7
set GLOBAL query_cache_size=1355776;
 
8
 
 
9
create user mysqltest1@localhost;
 
10
grant SELECT on test.* to mysqltest1@localhost;
 
11
 
 
12
create table t1 (a int);
 
13
 
 
14
connect (con1,localhost,mysqltest1,,);
 
15
connection con1;
 
16
--echo # This explain put here to be sure that init connection query
 
17
--echo # has 'Impossible WHERE'.
 
18
explain extended select * from test.t1 where 0;
 
19
connection default;
 
20
disconnect con1;
 
21
revoke all privileges, grant option from mysqltest1@localhost;
 
22
drop user mysqltest1@localhost;
 
23
 
 
24
drop table t1;
 
25
 
 
26
set GLOBAL query_cache_size=default;