~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/status.test

  • Committer: Brian Aker
  • Date: 2011-02-08 02:06:04 UTC
  • mto: (2152.2.1 alter-table)
  • mto: This revision was merged to the branch mainline in revision 2154.
  • Revision ID: brian@tangent.org-20110208020604-p23mwd9yvamuwbwu
Merge in column varchar build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
SELECT (SELECT a FROM t1 LIMIT 1) x FROM t1 LIMIT 1;
116
116
SHOW SESSION STATUS LIKE 'Last_query_cost';
117
117
 
118
 
SELECT * FROM t1 a CROSS JOIN t1 b LIMIT 1;
 
118
SELECT * FROM t1 a, t1 b LIMIT 1;
119
119
SHOW SESSION STATUS LIKE 'Last_query_cost';
120
120
 
121
121
DROP TABLE t1;