~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/count_distinct2.test

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä
  • Date: 2010-12-20 03:21:44 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2022.
  • Revision ID: stewart@flamingspork.com-20101220032144-7aqh2z403u7d7bdp
Merge Revision revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0 from MySQL InnoDB

Original revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0

Original Authors: Marko Mäkelä <marko.makela@oracle.com>
Original commit message:
row_ins_index_entry(): Note that only CREATE INDEX sets foreign=FALSE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
 
64
64
flush status;
65
65
select count(distinct n) from t1;
 
66
--replace_column 2 #
66
67
show status like 'Created_tmp_disk_tables';
67
68
drop table t1;
68
69
 
80
81
enable_query_log;
81
82
flush status;
82
83
select count(distinct s) from t1;
 
84
--replace_column 2 #
83
85
show status like 'Created_tmp_disk_tables';
84
86
drop table t1;
85
87