aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/arel/engines/sql/engine.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/arel/engines/sql/engine.rb b/lib/arel/engines/sql/engine.rb
index 5a8c9f16c5..7d2926040c 100644
--- a/lib/arel/engines/sql/engine.rb
+++ b/lib/arel/engines/sql/engine.rb
@@ -19,13 +19,7 @@ module Arel
end
def read(relation)
- # FIXME
rows = connection.select_rows(relation.to_sql)
-
- class << rows
- include Enumerable
- end
-
Array.new(rows, relation.attributes)
end