~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.inc.backup

  • 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
--source include/percona_query_cache_with_comments_clear.inc
 
2
let $query=/* with comment first */select * from t1;
 
3
eval $query;
 
4
--source include/percona_query_cache_with_comments_eval.inc
 
5
 
 
6
let $query=# with comment first
 
7
select * from t1;
 
8
--source include/percona_query_cache_with_comments_eval.inc
 
9
 
 
10
let $query=-- with comment first
 
11
select * from t1;
 
12
--source include/percona_query_cache_with_comments_eval.inc
 
13
 
 
14
let $query=/* with comment first and "quote" */select * from t1;
 
15
--source include/percona_query_cache_with_comments_eval.inc
 
16
 
 
17
let $query=# with comment first and "quote"
 
18
select * from t1;
 
19
--source include/percona_query_cache_with_comments_eval.inc
 
20
 
 
21
let $query=-- with comment first and "quote" 
 
22
select * from t1;
 
23
--source include/percona_query_cache_with_comments_eval.inc
 
24
 
 
25
let $query=
 
26
    /* with comment and whitespaces first */select * from t1;
 
27
--source include/percona_query_cache_with_comments_eval.inc
 
28
 
 
29
let $query= 
 
30
    # with comment and whitespaces first
 
31
select * from t1;
 
32
--source include/percona_query_cache_with_comments_eval.inc
 
33
 
 
34
let $query=
 
35
    -- with comment and whitespaces first
 
36
select * from t1;
 
37
--source include/percona_query_cache_with_comments_eval.inc
 
38
 
 
39
let $internal=* internal comment *;
 
40
 
 
41
let $query=select * /$internal/ from t1;
 
42
--source include/percona_query_cache_with_comments_eval.inc
 
43
let $query=select */$internal/ from t1;
 
44
--source include/percona_query_cache_with_comments_eval.inc
 
45
let $query=select */$internal/from t1;
 
46
--source include/percona_query_cache_with_comments_eval.inc
 
47
 
 
48
let $internal=* internal comment with "quote" *;
 
49
 
 
50
let $query=select * /$internal/ from t1;
 
51
--source include/percona_query_cache_with_comments_eval.inc
 
52
let $query=select */$internal/ from t1;
 
53
--source include/percona_query_cache_with_comments_eval.inc
 
54
let $query=select */$internal/from t1;
 
55
--source include/percona_query_cache_with_comments_eval.inc
 
56
 
 
57
let $query=select * from t1
 
58
;
 
59
--source include/percona_query_cache_with_comments_eval.inc
 
60
 
 
61
let $query=select * from t1 ;
 
62
--source include/percona_query_cache_with_comments_eval.inc
 
63
 
 
64
let $query=select * from t1     ;
 
65
--source include/percona_query_cache_with_comments_eval.inc
 
66
 
 
67
let $query=select * from t1
 
68
/* comment in the end */;
 
69
--source include/percona_query_cache_with_comments_eval.inc
 
70
 
 
71
let $query=select * from t1
 
72
/* comment in the end */
 
73
;
 
74
--source include/percona_query_cache_with_comments_eval.inc
 
75
 
 
76
let $query=select * from t1 #comment in the end;
 
77
--source include/percona_query_cache_with_comments_eval.inc
 
78
 
 
79
let $query=select * from t1 #comment in the end
 
80
;
 
81
--source include/percona_query_cache_with_comments_eval.inc
 
82
 
 
83
let $query=select * from t1 -- comment in the end;
 
84
--source include/percona_query_cache_with_comments_eval.inc
 
85
 
 
86
let $query=select * from t1 -- comment in the end
 
87
;
 
88
--source include/percona_query_cache_with_comments_eval.inc