~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

fix pthread atomics. operator precedence is important. The unit test now passes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
create table t5 (id int auto_increment primary key);
17
17
insert into t5 values (10);
18
18
 
19
 
--sorted_result
20
19
select table_name from data_dictionary.tables
21
20
where table_schema = "mysqltest" and table_name like "t%";
22
21
 
26
25
--replace_column 1 #  6 # 7 # 8 # 9 # 10 #
27
26
show table status;
28
27
show columns from t3 like "a%";
29
 
--sorted_result
30
28
select * from data_dictionary.columns where table_name="t1"
31
29
and column_name= "a";
32
30
 
33
31
connect (user3,localhost,mysqltest_2,,);
34
32
connection user3;
35
 
--sorted_result
36
33
select table_name, column_name from data_dictionary.columns 
37
34
where table_schema = 'mysqltest' and table_name = 't1';
38
35
show columns from mysqltest.t1;
46
43
#
47
44
# Bug#2719 information_schema: errors in "columns"
48
45
#
49
 
--sorted_result
50
46
select column_type from data_dictionary.columns
51
47
where table_schema="data_dictionary" and table_name="COLUMNS" and
52
48
(column_name="character_set_name" or column_name="collation_name");
55
51
# Bug#2718 information_schema: errors in "tables"
56
52
#
57
53
--replace_column 1 #
58
 
--sorted_result
59
54
select count(*) from data_dictionary.tables where 
60
55
table_schema="data_dictionary" and table_name="COLUMNS";
61
56
 
62
57
--replace_column 1 #
63
 
--sorted_result
64
58
select count(*) from data_dictionary.tables
65
59
where table_schema="mysql" and table_name="user";
66
60
 
68
62
# Bug #7215  information_schema: columns are longtext instead of varchar
69
63
# Bug #7217  information_schema: columns are varbinary() instead of timestamp
70
64
#
71
 
--sorted_result
72
65
select table_schema, table_name, column_name from data_dictionary.columns where data_type = 'longtext';
73
 
--sorted_result
74
66
select table_name, column_name, data_type from data_dictionary.columns where data_type = 'datetime';
75
67
 
76
68
#
77
69
# Bug #8164  subquery with data_dictionary.COLUMNS, 100 % CPU
78
70
#
79
 
--sorted_result
80
71
SELECT COUNT(*) FROM data_dictionary.tables A
81
72
WHERE NOT EXISTS 
82
73
(SELECT * FROM data_dictionary.columns B
96
87
  x_real REAL,
97
88
  x_float FLOAT,
98
89
  x_double_precision DOUBLE PRECISION );
99
 
--sorted_result
100
90
SELECT COLUMN_NAME, CHARACTER_MAXIMUM_LENGTH, CHARACTER_OCTET_LENGTH
101
91
FROM data_dictionary.columns
102
92
WHERE TABLE_NAME= 't1';
106
96
# Bug #9404  information_schema: Weird error messages
107
97
# with SELECT SUM() ... GROUP BY queries
108
98
#
109
 
--replace_column 2 #
110
99
SELECT table_schema, count(*) FROM data_dictionary.tables
111
100
WHERE table_name NOT LIKE 'ndb_%' AND 
112
101
table_name NOT LIKE 'falcon%'
117
106
# Bug #12301 information_schema: NUMERIC_SCALE must be 0 for integer columns
118
107
#
119
108
create table t1(f1 LONGBLOB, f2 LONGTEXT);
120
 
--sorted_result
121
109
select column_name,data_type,CHARACTER_OCTET_LENGTH,
122
110
       CHARACTER_MAXIMUM_LENGTH
123
111
from data_dictionary.columns
125
113
drop table t1;
126
114
create table t1(f1 int, f2 int, f3 BIGINT, f4 int,
127
115
                f5 BIGINT, f6 int, f7 int);
128
 
--sorted_result
129
116
select column_name, NUMERIC_PRECISION, NUMERIC_SCALE
130
117
from data_dictionary.columns
131
118
where table_name='t1';
135
122
# Bug#12518 COLUMN_DEFAULT has wrong value if NOT NULL is set
136
123
#
137
124
create table t1 (a int not null, b int);
138
 
--sorted_result
139
125
select column_name, column_default from data_dictionary.columns
140
126
  where table_schema='test' and table_name='t1';
141
127
use test;
149
135
use test;
150
136
create table t1(id int);
151
137
insert into t1(id) values (1);
152
 
--sorted_result
153
138
select 1 from (select 1 from test.t1) a;
154
139
use data_dictionary;
155
 
--sorted_result
156
140
select 1 from (select 1 from test.t1) a;
157
141
use test;
158
142
drop table t1;
161
145
# Bug#14271 I_S: columns has no size for (var)binary columns
162
146
#
163
147
create table t1(f1 varbinary(32), f2 varbinary(64));
164
 
--sorted_result
165
148
select character_maximum_length, character_octet_length
166
149
from data_dictionary.columns where table_name='t1';
167
150
drop table t1;
180
163
# Bug#19236 bad COLUMNS.CHARACTER_MAXIMUM_LENGHT and CHARACTER_OCTET_LENGTH
181
164
#
182
165
create table t1(f1 char(1) not null, f2 char(9) not null);
183
 
--sorted_result
184
166
select CHARACTER_MAXIMUM_LENGTH, CHARACTER_OCTET_LENGTH from
185
167
data_dictionary.columns where table_schema='test' and table_name = 't1';
186
168
drop table t1;
191
173
set @a:= '.';
192
174
create table t1(f1 char(5));
193
175
create table t2(f1 char(5));
194
 
--sorted_result
195
176
select concat(@a, table_name), @a, table_name
196
177
from data_dictionary.tables where table_schema = 'test';
197
178
drop table t1,t2;
262
243
#
263
244
# Bug#24630  Subselect query crashes mysqld
264
245
#
265
 
--sorted_result
266
246
select 1 as f1 from data_dictionary.tables  where "CHARACTER_SETS"=
267
247
(select cast(table_name as char)  from data_dictionary.tables
268
248
 order by table_name limit 1) limit 1;
317
297
#
318
298
# Bug#30795 Query on data_dictionary.schemas, wrong result
319
299
#
320
 
--sorted_result
321
300
SELECT SCHEMA_NAME FROM data_dictionary.schemas
322
301
WHERE SCHEMA_NAME ='data_dictionary';
323
302
                                                                                                 
324
303
#
325
304
# Bug#31381 Error in retrieving Data from INFORMATION_SCHEMA
326
305
#
327
 
--sorted_result
328
306
SELECT TABLE_COLLATION FROM data_dictionary.tables
329
307
WHERE TABLE_SCHEMA='mysql' and TABLE_NAME= 'db';
330
308
 
332
310
--echo # Test that the query is visible to self and others.
333
311
--echo #
334
312
 
335
 
--sorted_result
336
313
SELECT info FROM data_dictionary.processlist WHERE id = CONNECTION_ID();
337
314
 
338
315
#
339
316
# do a query on the PROCESSLIST table in I_S to ensure it works correctly
340
317
#
341
 
--sorted_result
342
318
SELECT info, command, db
343
319
FROM data_dictionary.processlist
344
320
WHERE id = CONNECTION_ID();