~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
#
249
249
# Bug#14271 I_S: columns has no size for (var)binary columns
250
250
#
251
 
create table t1(f1 binary(32), f2 varbinary(64));
 
251
create table t1(f1 varbinary(32), f2 varbinary(64));
252
252
select character_maximum_length, character_octet_length
253
253
from information_schema.columns where table_name='t1';
254
254
drop table t1;
329
329
#
330
330
# Bug#23299 Some queries against INFORMATION_SCHEMA with subqueries fail
331
331
#
332
 
create table t1 (f1 int(11));
333
 
create table t2 (f1 int(11), f2 int(11));
 
332
create table t1 (f1 int);
 
333
create table t2 (f1 int, f2 int);
334
334
 
335
335
select table_name from information_schema.tables
336
336
where table_schema = 'test' and table_name not in