File: table_open_cache_functionality.result

package info (click to toggle)
percona-xtrabackup 2.2.3-2.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 293,260 kB
  • ctags: 146,881
  • sloc: cpp: 1,051,960; ansic: 570,217; java: 54,595; perl: 53,495; pascal: 44,194; sh: 27,826; yacc: 15,314; python: 12,142; xml: 7,848; sql: 4,125; makefile: 1,459; awk: 785; lex: 758
file content (260 lines) | stat: -rw-r--r-- 12,571 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
'#________________________VAR_05_table_open_cache__________________#'
echo '##'
--echo '#---------------------WL6372_VAR_5_01----------------------#'
####################################################################
#   Checking default value                                         #
####################################################################
SELECT COUNT(@@GLOBAL.table_open_cache)
1 Expected
SELECT IF(@@open_files_limit < 5000, 2000, @@GLOBAL.table_open_cache);
IF(@@open_files_limit < 5000, 2000, @@GLOBAL.table_open_cache)
2000
2000 Expected
'#---------------------WL6372_VAR_5_02----------------------#'
# Restart server with table_open_cache 1
SELECT @@GLOBAL.table_open_cache;
@@GLOBAL.table_open_cache
1
1 Expected
SET @@GLOBAL.table_open_cache=DEFAULT;
SELECT @@GLOBAL.table_open_cache;
@@GLOBAL.table_open_cache
2000
2000 Expected
'#---------------------WL6372_VAR_5_03----------------------#'
SET @@local.table_open_cache=1;
ERROR HY000: Variable 'table_open_cache' is a GLOBAL variable and should be set with SET GLOBAL
Expected error 'Global variable'
SET @@session.table_open_cache=1;
ERROR HY000: Variable 'table_open_cache' is a GLOBAL variable and should be set with SET GLOBAL
Expected error 'Global variable'
SET @@GLOBAL.table_open_cache=1;
SET @@GLOBAL.table_open_cache=DEFAULT;
SELECT @@GLOBAL.table_open_cache;
@@GLOBAL.table_open_cache
2000
2000 Expected
'#---------------------WL6372_VAR_5_04----------------------#'
SELECT @@GLOBAL.table_open_cache = VARIABLE_VALUE
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='table_open_cache';
@@GLOBAL.table_open_cache = VARIABLE_VALUE
1
1 Expected
SELECT COUNT(@@GLOBAL.table_open_cache);
COUNT(@@GLOBAL.table_open_cache)
1
1 Expected
SELECT COUNT(VARIABLE_VALUE)
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES 
WHERE VARIABLE_NAME='table_open_cache';
COUNT(VARIABLE_VALUE)
1
1 Expected
'#---------------------WL6372_VAR_5_05----------------------#'
SELECT @@table_open_cache = @@GLOBAL.table_open_cache;
@@table_open_cache = @@GLOBAL.table_open_cache
1
1 Expected
SELECT COUNT(@@local.table_open_cache);
ERROR HY000: Variable 'table_open_cache' is a GLOBAL variable
Expected error 'Variable is a GLOBAL variable'
SELECT COUNT(@@SESSION.table_open_cache);
ERROR HY000: Variable 'table_open_cache' is a GLOBAL variable
Expected error 'Variable is a GLOBAL variable'
SELECT COUNT(@@GLOBAL.table_open_cache);
COUNT(@@GLOBAL.table_open_cache)
1
1 Expected
SELECT table_open_cache = @@SESSION.table_open_cache;
ERROR 42S22: Unknown column 'table_open_cache' in 'field list'
Expected error 'Unknown column table_open_cache in field list'
'#---------------------WL6372_VAR_5_06----------------------#'
Check the size of the vardir
The output size is in unit blocks
TRUE
TRUE Expected
'#---------------------WL6372_VAR_5_07----------------------#'
# create 3 tables and insert 1 row each
DROP TABLE IF EXISTS tab1;
DROP TABLE IF EXISTS tab2;
DROP TABLE IF EXISTS tab3;
===============
create table & Index
===============
CREATE TABLE tab1 (col_1 text(10))
ENGINE=INNODB ;
===============
Load the data
===============
SET @col_1 = repeat('a', 10);
INSERT INTO tab1
VALUES (@col_1);
commit;
===============
create table & Index
===============
CREATE TABLE tab2 (col_1 text(10))
ENGINE=INNODB ;
===============
Load the data
===============
SET @col_1 = repeat('a', 10);
commit;
===============
create table & Index
===============
CREATE TABLE tab3 (col_1 text(10))
ENGINE=INNODB ;
===============
Load the data
===============
SET @col_1 = repeat('a', 10);
commit;
flush tables;
flush status;
set @@GLOBAL.table_open_cache=2;
# open two tables
select 1 from tab1;
1
1
1 Expected
select 1 from tab2;
1
1 Expected
set @opened_tables = (select variable_value from information_schema.session_status where variable_name ='Opened_tables');
set @open_cache_hits = (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits');
set @open_cache_miss = (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses');
set @open_cache_overflow = (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows');
# table_open_cache hit 1
select 1 from tab1;
1
1
1 Expected
# table_open_cache hit 2
select 1 from tab2;
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables;
(select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits + 2;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits + 2
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow
1
1 Expected
# open third table
select 1 from tab3;
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables + 1;
(select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables + 1
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits + 2;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits + 2
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss + 1;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss + 1
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow + 1;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow + 1
1
1 Expected
flush status;
set @global_opened_tables = (select variable_value from information_schema.global_status where variable_name ='Opened_tables');
set @global_open_cache_hits = (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_hits');
set @global_open_cache_miss = (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_misses');
set @global_open_cache_overflow = (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_overflows');
# opening table 2 from another client session
set @opened_tables = (select variable_value from information_schema.session_status where variable_name ='Opened_tables');
set @open_cache_hits = (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits');
set @open_cache_miss = (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses');
set @open_cache_overflow = (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows');
select 1 from tab2;
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables;
(select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits + 1;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits + 1
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow
1
1 Expected
flush status;
select (select variable_value from information_schema.global_status where variable_name ='Opened_tables') = @global_opened_tables;
(select variable_value from information_schema.global_status where variable_name ='Opened_tables') = @global_opened_tables
1
1 Expected
select (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_hits') = @global_open_cache_hits + 1;
(select variable_value from information_schema.global_status where variable_name ='Table_open_cache_hits') = @global_open_cache_hits + 1
1
1 Expected
select (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_misses') = @global_open_cache_miss;
(select variable_value from information_schema.global_status where variable_name ='Table_open_cache_misses') = @global_open_cache_miss
1
1 Expected
select (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_overflows') = @global_open_cache_overflow;
(select variable_value from information_schema.global_status where variable_name ='Table_open_cache_overflows') = @global_open_cache_overflow
1
1 Expected
select 1 from tab1;
1
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables + 1;
(select variable_value from information_schema.session_status where variable_name ='Opened_tables') = @opened_tables + 1
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_hits') = @open_cache_hits
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss + 1;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_misses') = @open_cache_miss + 1
1
1 Expected
select (select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow + 1;
(select variable_value from information_schema.session_status where variable_name ='Table_open_cache_overflows') = @open_cache_overflow + 1
1
flush status;
select (select variable_value from information_schema.global_status where variable_name ='Opened_tables') = @global_opened_tables + 1;
(select variable_value from information_schema.global_status where variable_name ='Opened_tables') = @global_opened_tables + 1
1
1 Expected
select (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_hits') = @global_open_cache_hits + 1;
(select variable_value from information_schema.global_status where variable_name ='Table_open_cache_hits') = @global_open_cache_hits + 1
1
1 Expected
select (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_misses') = @global_open_cache_miss + 1;
(select variable_value from information_schema.global_status where variable_name ='Table_open_cache_misses') = @global_open_cache_miss + 1
1
1 Expected
select (select variable_value from information_schema.global_status where variable_name ='Table_open_cache_overflows') = @global_open_cache_overflow + 1;
(select variable_value from information_schema.global_status where variable_name ='Table_open_cache_overflows') = @global_open_cache_overflow + 1
1
1 Expected
#cleanup
DROP TABLE IF EXISTS tab1;
DROP TABLE IF EXISTS tab2;
DROP TABLE IF EXISTS tab3;
set @@GLOBAL.table_open_cache=DEFAULT;