~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/information_schema.test

Remove processlist from old I_S.

Show diffs side-by-side

added added

removed removed

Lines of Context:
390
390
--echo # Test that the query is visible to self and others.
391
391
--echo #
392
392
 
393
 
SELECT info FROM information_schema.old_processlist WHERE id = CONNECTION_ID();
 
393
SELECT info FROM data_dictionary.processlist WHERE id = CONNECTION_ID();
394
394
 
395
395
#
396
396
# test that SHOW PROCESSLIST works correctly
402
402
# do a query on the PROCESSLIST table in I_S to ensure it works correctly
403
403
#
404
404
SELECT info, command, db
405
 
FROM information_schema.old_processlist
 
405
FROM data_dictionary.processlist
406
406
WHERE id = CONNECTION_ID();
407
407
 
408
408
#