~jaypipes/drizzle/xa-transaction-log

« back to all changes in this revision

Viewing changes to tests/r/select.result

  • Committer: Jay Pipes
  • Date: 2010-03-11 00:18:09 UTC
  • mfrom: (1273.1.60 staging)
  • Revision ID: jpipes@serialcoder-20100311001809-bwqn45a6l4u1gtbk
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
2458
2458
create table t11 like t1;
2459
2459
insert into t1 values(1,""),(2,"");
2460
2460
show table status like 't1%';
2461
 
Name    Engine  Version Row_format      Rows    Avg_row_length  Data_length     Max_data_length Index_length    Data_free       Auto_increment  Create_time     Update_time     Check_time      Collation       Checksum        Create_options  Comment
2462
 
t1      InnoDB  X       DEFAULT 0       0       X       X       X       X       X       X       X       X       utf8_general_ci 0               
2463
 
t11     InnoDB  X       DEFAULT 0       0       X       X       X       X       X       X       X       X       utf8_general_ci 0               
 
2461
Session Schema  Name    Type    Engine  Version Rows    Avg_row_length  Table_size      Auto_increment
 
2462
#       test    t1      STANDARD        InnoDB  #       #       #       #       #
2464
2463
select 123 as a from t1 where f1 is null;
2465
2464
a
2466
2465
drop table t1,t11;