Fix circular argument reference

This commit is contained in:
Loic Nageleisen 2017-11-21 14:08:13 +01:00
parent 422defeecd
commit 97f5214da7

View file

@ -13,7 +13,7 @@ module Rebel::SQL
exec(Rebel::SQL.drop_table(table_name)) exec(Rebel::SQL.drop_table(table_name))
end end
def select(*fields, distinct: distinct, from: nil, where: nil, inner: nil, left: nil, right: nil, group: nil, order: nil, limit: nil, offset: nil) def select(*fields, distinct: nil, from: nil, where: nil, inner: nil, left: nil, right: nil, group: nil, order: nil, limit: nil, offset: nil)
exec(Rebel::SQL.select(*fields, exec(Rebel::SQL.select(*fields,
distinct: distinct, distinct: distinct,
from: from, from: from,