Navigation Menu

Skip to content

Commit

Permalink
added table scan test for _id.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikdttr committed Nov 18, 2010
1 parent 49b52ef commit d80373a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/sql/t/select_all.test
Expand Up @@ -85,6 +85,17 @@ select * from t1 order by c3 asc;
select * from t1 order by c3 desc;
drop table t1;

# _id
create table t1 (_id int, c1 int);
insert into t1 values (null,100);
insert into t1 values (null,100);
insert into t1 values (null,100);
insert into t1 values (null,100);
insert into t1 values (null,100);
select * from t1;
select * from t1 where _id < 3;
select * from t1 where _id >= 3;
drop table t1;

--disable_warnings
uninstall plugin groonga;
Expand Down

0 comments on commit d80373a

Please sign in to comment.