diff options
Diffstat (limited to 'lib/arel/recursion')
-rw-r--r-- | lib/arel/recursion/base_case.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/arel/recursion/base_case.rb b/lib/arel/recursion/base_case.rb new file mode 100644 index 0000000000..84a526f57c --- /dev/null +++ b/lib/arel/recursion/base_case.rb @@ -0,0 +1,13 @@ +module Arel + module Recursion + module BaseCase + def table + self + end + + def table_sql(formatter = Sql::TableReference.new(self)) + formatter.table self + end + end + end +end |