~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/randgen_queries.result

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:13:33 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114051333-pz1xy0f1dyc4jfms
talk about statement rollback (briefly) in replication docs

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;