fix bug related to Slice(T).new(0). It was messing with the data in the stack

This commit is contained in:
Brian J. Cardiff 2016-06-23 22:36:34 -03:00
parent b2da4f3f6e
commit 933014c1aa
2 changed files with 4 additions and 6 deletions

View file

@ -54,7 +54,7 @@ module DB
# See `QueryMethods#query`
def query
perform_query Slice(Any).new(0)
perform_query Tuple.new
end
# See `QueryMethods#query`