When a scan range begins at the starting point fo the tuple, we'll missed that tuple. This patch fixes

this problem.

review: 162
This commit is contained in:
Alan Choi
2012-07-12 17:54:34 -07:00
committed by Henry Robinson
parent ff9a38b472
commit cbadb4eac4
24 changed files with 277 additions and 92 deletions

View File

@@ -0,0 +1,16 @@
select * from tinytable
---- TYPES
string, string
---- RESULTS
'aaaaaaa','bbbbbbb'
'ccccc','dddd'
'eeeeeeee','f'
====
select a from tinytable
---- TYPES
string
---- RESULTS
'aaaaaaa'
'ccccc'
'eeeeeeee'
====