Navigation Menu

Skip to content

Commit

Permalink
added table scan test result for _id.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikdttr committed Nov 18, 2010
1 parent d80373a commit afc77e6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test/sql/r/select_all.result
Expand Up @@ -175,4 +175,27 @@ c1 c2 c3
1 20 hoge
2 50 fuga
drop table t1;
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;
_id c1
1 100
2 100
3 100
4 100
5 100
select * from t1 where _id < 3;
_id c1
1 100
2 100
select * from t1 where _id >= 3;
_id c1
3 100
4 100
5 100
drop table t1;
uninstall plugin groonga;

0 comments on commit afc77e6

Please sign in to comment.