~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/tests/r/execute_wait.result

  • Committer: Brian Aker
  • Date: 2010-12-09 06:44:30 UTC
  • Revision ID: brian@tangent.org-20101209064430-zpnarkw1int9aun7
Fixed table issue (I was not removing some tables after the test was done).

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
SELECT IF((COUNT(TABLE_NAME) = 3), "YES", "NO") FROM DATA_DICTIONARY.TABLES WHERE TABLE_NAME IN ("A", "B", "C") AND TABLE_SCHEMA=SCHEMA();
21
21
IF((COUNT(TABLE_NAME) = 3), "YES", "NO")
22
22
YES
 
23
DROP TABLE A;
 
24
DROP TABLE B;
 
25
DROP TABLE C;
23
26
DROP TABLE t1;