~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/randgen_queries.result

  • Committer: Brian Aker
  • Date: 2011-01-12 06:45:23 UTC
  • mto: (2073.1.4 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2080.
  • Revision ID: brian@tangent.org-20110112064523-rqhptaqbph22qmj1
Remove custom error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
DATA_DICTIONARY COLUMNS misc    TABLE_SCHEMA    indexed
81
81
DATA_DICTIONARY COLUMNS misc    TABLE_NAME      indexed
82
82
DATA_DICTIONARY COLUMNS misc    COLUMN_NAME     indexed
83
 
COMMIT;
84
83
CREATE SCHEMA randgen_query_test;
85
84
USE randgen_query_test;
86
85
CREATE TABLE t1 (a INT);
126
125
test    t1      misc    col_text_not_null_key   indexed
127
126
test    t1      misc    pk      primary
128
127
test    t1      misc    col_bigint_key  indexed
129
 
COMMIT;
130
128
DROP SCHEMA randgen_query_test;
131
129
USE test;
132
130
select AVG(`col_int_key`) + AVG(`col_int`) AS average1,
162
160
select COUNT(*) from data_dictionary.tables;
163
161
COUNT(*)
164
162
####.##.####
165
 
COMMIT;
166
163
DROP TABLE t1;