~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/function_dictionary/tests/r/functions.result

  • Committer: Brian Aker
  • Date: 2010-09-10 22:40:11 UTC
  • mto: (1759.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 1762.
  • Revision ID: brian@tangent.org-20100910224011-gya7cep2bl8h7vdw
Adding in data dictionary table to list out functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SELECT COUNT(FUNCTION_NAME) FROM DATA_DICTIONARY.FUNCTIONS;
 
2
COUNT(FUNCTION_NAME)
 
3
35
 
4
CREATE TABLE function_names SELECT FUNCTION_NAME FROM DATA_DICTIONARY.FUNCTIONS;
 
5
SELECT COUNT(*) FROM function_names;
 
6
COUNT(*)
 
7
35
 
8
DROP TABLE function_names;