~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: lbieber
  • Date: 2010-09-13 23:03:27 UTC
  • mfrom: (1761.1.1 build)
  • Revision ID: lbieber@orisndriz08-20100913230327-63e4fk97eacjrtbg
Merge Brian - Adds random_number, random_string, and a counter table to DD

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
#
 
4
CREATE TABLE function_names SELECT FUNCTION_NAME FROM DATA_DICTIONARY.FUNCTIONS;
 
5
SELECT COUNT(*) FROM function_names;
 
6
COUNT(*)
 
7
#
 
8
DROP TABLE function_names;