~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/error_dictionary/tests/t/main.test

  • Committer: Brian Aker
  • Date: 2010-12-16 18:42:53 UTC
  • mfrom: (1999.1.6 clean)
  • Revision ID: brian@tangent.org-20101216184253-jv6usrdyu9hfunk5
Rollup of error work done by Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--replace_column 1 #
 
2
 
 
3
SELECT COUNT(ERROR_NAME) FROM DATA_DICTIONARY.ERRORS;
 
4
 
 
5
CREATE TABLE error_names SELECT ERROR_NAME FROM DATA_DICTIONARY.ERRORS;
 
6
 
 
7
--replace_column 1 #
 
8
SELECT COUNT(*) FROM error_names;
 
9
 
 
10
DROP TABLE error_names;
 
11
 
 
12