aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/group.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/relations/operations/group.rb')
-rw-r--r--lib/arel/algebra/relations/operations/group.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/arel/algebra/relations/operations/group.rb b/lib/arel/algebra/relations/operations/group.rb
deleted file mode 100644
index 16a2963c93..0000000000
--- a/lib/arel/algebra/relations/operations/group.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-module Arel
- class Group < Compound
- attr_reader :groupings
-
- def initialize(relation, groupings)
- super(relation)
- @groupings = groupings.collect { |g| g.bind(relation) }
- end
-
- def eval
- raise NotImplementedError
- end
- end
-end