~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-12-16 00:11:51 UTC
  • mto: (1999.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2000.
  • Revision ID: mordred@inaugust.com-20101216001151-kffm265hocioqtdk
Add error message data dictionary table.

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