~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

Merge Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
408
408
FROM information_schema.processlist
409
409
WHERE id = CONNECTION_ID();
410
410
 
 
411
#
 
412
# do a query on the CHARACTER_SET table in I_S 
 
413
#
 
414
SELECT *
 
415
FROM information_schema.character_sets;
 
416
 
 
417
#
 
418
# perform a query on the COLLATIONS table
 
419
#
 
420
SELECT *
 
421
FROM information_schema.collations;
 
422
 
 
423
#
 
424
# perform a query on COLLATION_CHARACTER_SET_APPLICABILITY
 
425
#
 
426
SELECT *
 
427
FROM information_schema.collation_character_set_applicability;
 
428
 
411
429
412
430
# do a query on the PLUGINS table in I_S to ensure it works correctly
413
431
# how do we test for this if the contents of this table can change