diff options
Diffstat (limited to 'lib/arel/nodes/with.rb')
-rw-r--r-- | lib/arel/nodes/with.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/arel/nodes/with.rb b/lib/arel/nodes/with.rb new file mode 100644 index 0000000000..7f08abe47d --- /dev/null +++ b/lib/arel/nodes/with.rb @@ -0,0 +1,10 @@ +module Arel + module Nodes + class With < Arel::Nodes::Unary + alias children expr + end + + class WithRecursive < With; end + end +end + |