~sergei.glushchenko/percona-server/55-tp

« back to all changes in this revision

Viewing changes to mysql-test/query_cache_enhance.patch/percona_query_cache_with_comments_crash.result

  • Committer: Oleg Tsarev
  • Date: 2010-12-09 18:30:58 UTC
  • Revision ID: oleg.tsarev@percona.com-20101209183058-1mq1qrgjjkz3qxof
propogate Oleg's patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set GLOBAL query_cache_size=1355776;
 
2
drop table if exists t1;
 
3
create table t1 (a int not null);
 
4
insert into t1 values (1),(2),(3);
 
5
flush query cache;
 
6
flush query cache;
 
7
reset query cache;
 
8
flush status;
 
9
( select * from t1 );
 
10
a
 
11
1
 
12
2
 
13
3
 
14
/*!40101 SET @OLD_SQL_MODE := @@SQL_MODE, @@SQL_MODE := REPLACE(REPLACE(@@SQL_MODE, 'ANSI_QUOTES', ''), ',,', ','), @OLD_QUOTE := @@SQL_QUOTE_SHOW_CREATE, @@SQL_QUOTE_SHOW_CREATE := 1 */;
 
15
/* only comment */;
 
16
# only comment
 
17
;
 
18
-- only comment
 
19
;
 
20
DROP TABLE t1;
 
21
SET GLOBAL query_cache_size= default;