~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/randgen_queries.result

  • Committer: Lee Bieber
  • Date: 2010-11-14 23:15:42 UTC
  • mfrom: (1929.1.42 warning-stack-frame)
  • Revision ID: kalebral@gmail.com-20101114231542-fnnu6ydd2p17n582
Merge Monty - fix bug 672372: some functions use > 32k stack

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
WHEN IS_INDEXED = 'YES' THEN 'indexed' 
61
61
ELSE 'indexed' END 
62
62
 
63
 
DATA_DICTIONARY CATALOGS        misc    CATALOG_NAME    indexed
64
 
DATA_DICTIONARY CATALOGS        misc    CATALOG_CREATION_TIME   indexed
65
 
DATA_DICTIONARY CATALOGS        misc    CATALOG_UPDATE_TIME     indexed
66
 
DATA_DICTIONARY CATALOGS        misc    CATALOG_UUID    indexed
67
 
DATA_DICTIONARY CATALOGS        misc    CATALOG_VERSION indexed
68
 
DATA_DICTIONARY CATALOG_CACHE   misc    CATALOG_NAME    indexed
69
63
DATA_DICTIONARY CHARACTER_SETS  misc    CHARACTER_SET_NAME      indexed
70
64
DATA_DICTIONARY CHARACTER_SETS  misc    DEFAULT_COLLATE_NAME    indexed
71
65
DATA_DICTIONARY CHARACTER_SETS  misc    DESCRIPTION     indexed
80
74
DATA_DICTIONARY COLUMNS misc    TABLE_SCHEMA    indexed
81
75
DATA_DICTIONARY COLUMNS misc    TABLE_NAME      indexed
82
76
DATA_DICTIONARY COLUMNS misc    COLUMN_NAME     indexed
83
 
COMMIT;
 
77
DATA_DICTIONARY COLUMNS misc    COLUMN_TYPE     indexed
 
78
DATA_DICTIONARY COLUMNS misc    ORDINAL_POSITION        indexed
 
79
DATA_DICTIONARY COLUMNS misc    COLUMN_DEFAULT  indexed
 
80
DATA_DICTIONARY COLUMNS misc    COLUMN_DEFAULT_IS_NULL  indexed
 
81
DATA_DICTIONARY COLUMNS misc    COLUMN_DEFAULT_UPDATE   indexed
 
82
DATA_DICTIONARY COLUMNS misc    IS_AUTO_INCREMENT       indexed
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;