aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/nodes/grouping.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/arel/nodes/grouping.rb')
-rw-r--r--activerecord/lib/arel/nodes/grouping.rb7
1 files changed, 7 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..ffe66654ce
--- /dev/null
+++ b/activerecord/lib/arel/nodes/grouping.rb
@@ -0,0 +1,7 @@
+# frozen_string_literal: true
+module Arel
+ module Nodes
+ class Grouping < Unary
+ end
+ end
+end