~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/status.result

Merge Joe.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
1
53
53
SHOW SESSION STATUS LIKE 'Last_query_cost';
54
54
Variable_name   Value
55
 
Last_query_cost 0
 
55
Last_query_cost 1.399
56
56
EXPLAIN SELECT a FROM t1;
57
57
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
58
58
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    #       
59
59
SHOW SESSION STATUS LIKE 'Last_query_cost';
60
60
Variable_name   Value
61
 
Last_query_cost 0
 
61
Last_query_cost 1.399
62
62
SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY a;
63
63
a
64
64
1
91
91
1       1
92
92
SHOW SESSION STATUS LIKE 'Last_query_cost';
93
93
Variable_name   Value
94
 
Last_query_cost 0
 
94
Last_query_cost 2.799
95
95
DROP TABLE t1;