Navigation Menu

Skip to content

Commit

Permalink
test: fix expected value
Browse files Browse the repository at this point in the history
The test is still failed.
  • Loading branch information
kou committed Oct 23, 2012
1 parent 206014c commit 7c440a3
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -24,6 +24,7 @@ c2
select c2, c3 from t1 where c3 between 10 and 16;
c2 c3
6 12
8 16
drop table t1;
create table t1 (c1 varchar(10), c2 varchar(10), c3 varchar(10), primary key(c1), key idx1(c2), key idx2(c3, c2));
insert into t1 values('1','2','4');
Expand All @@ -49,5 +50,13 @@ c2
16
select c2, c3 from t1 where c3 between '10' and '16';
c2 c3
50 100
52 104
54 108
56 112
58 116
6 12
60 120
62 124
64 128
drop table t1;

0 comments on commit 7c440a3

Please sign in to comment.