aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/from.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/relations/operations/from.rb')
-rw-r--r--lib/arel/algebra/relations/operations/from.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/arel/algebra/relations/operations/from.rb b/lib/arel/algebra/relations/operations/from.rb
deleted file mode 100644
index 3ebfb10cb2..0000000000
--- a/lib/arel/algebra/relations/operations/from.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-module Arel
- class From < Compound
- attr_reader :sources
-
- def initialize relation, sources
- super(relation)
- @sources = sources
- end
-
- def eval
- unoperated_rows[sources..-1]
- end
- end
-end