From 97f5214da7fa06d6ef756e86e98c4bf01d0f033c Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Tue, 21 Nov 2017 14:08:13 +0100 Subject: [PATCH] Fix circular argument reference --- lib/rebel/sql.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rebel/sql.rb b/lib/rebel/sql.rb index 9d39164..e89ab67 100644 --- a/lib/rebel/sql.rb +++ b/lib/rebel/sql.rb @@ -13,7 +13,7 @@ module Rebel::SQL exec(Rebel::SQL.drop_table(table_name)) 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, distinct: distinct, from: from,