diff options
Diffstat (limited to 'activerecord/lib/arel/nodes/grouping.rb')
-rw-r--r-- | activerecord/lib/arel/nodes/grouping.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/lib/arel/nodes/grouping.rb b/activerecord/lib/arel/nodes/grouping.rb new file mode 100644 index 0000000000..4d0bd69d4d --- /dev/null +++ b/activerecord/lib/arel/nodes/grouping.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +module Arel # :nodoc: all + module Nodes + class Grouping < Unary + end + end +end |