~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/error_dictionary/tests/r/main.result

  • 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
SELECT COUNT(ERROR_NAME) FROM DATA_DICTIONARY.ERRORS;
 
2
COUNT(ERROR_NAME)
 
3
#
 
4
CREATE TABLE error_names SELECT ERROR_NAME FROM DATA_DICTIONARY.ERRORS;
 
5
SELECT COUNT(*) FROM error_names;
 
6
COUNT(*)
 
7
#
 
8
DROP TABLE error_names;