~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert_select.result

  • Committer: Brian Aker
  • Date: 2009-11-22 18:35:47 UTC
  • mfrom: (1222.1.12 staging)
  • mto: This revision was merged to the branch mainline in revision 1225.
  • Revision ID: brian@gaz-20091122183547-u8n1g6pjp77rmz5m
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
788
788
create table t1(f1 int);
789
789
insert into t1 values(1),(2),(3);
790
790
create temporary table t2 (key(f1)) engine=myisam select sql_buffer_result f1 from t1;
791
 
check table t2 extended;
 
791
check table t2;
792
792
Table   Op      Msg_type        Msg_text
793
793
test.t2 check   status  OK
794
794
drop table t1,t2;