~drizzle-developers/ubuntu/natty/drizzle/natty

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_index_lookup.test

Merged in latest source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_linux.inc
 
2
SET SESSION storage_engine=pbxt;
1
3
create table t1 (a int primary key);
2
4
insert into t1 values (1),(2),(3),(4),(100),(200);
3
5
explain select * from t1 order by a;