~jaypipes/drizzle/refactor-trx-log-applier

« back to all changes in this revision

Viewing changes to tests/r/insert_select.result

  • Committer: Jay Pipes
  • Date: 2010-02-19 16:50:16 UTC
  • mfrom: (1273.1.31 staging)
  • Revision ID: jpipes@serialcoder-20100219165016-9su7domkzi21uznr
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
686
686
INSERT INTO t1 SELECT a + 2 FROM t1 LIMIT 1;
687
687
show status like 'Handler_read%';
688
688
Variable_name   Value
689
 
Handler_read_first      1
690
 
Handler_read_key        2
691
 
Handler_read_next       0
692
 
Handler_read_prev       0
693
 
Handler_read_rnd        0
694
 
Handler_read_rnd_next   1
 
689
Handler_read_first      #
 
690
Handler_read_key        #
 
691
Handler_read_next       #
 
692
Handler_read_prev       #
 
693
Handler_read_rnd        #
 
694
Handler_read_rnd_next   #
695
695
DROP TABLE t1;
696
696
CREATE TABLE t1 (
697
697
f1 int NOT NULL auto_increment PRIMARY KEY,