aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/visitors/to_sql.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/visitors/to_sql.rb')
-rw-r--r--lib/arel/visitors/to_sql.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/arel/visitors/to_sql.rb b/lib/arel/visitors/to_sql.rb
index 8db90c376a..082196ef2b 100644
--- a/lib/arel/visitors/to_sql.rb
+++ b/lib/arel/visitors/to_sql.rb
@@ -70,11 +70,12 @@ module Arel
def table_exists? name
return true if @table_exists.key? name
- if @connection.table_exists?(name)
- @table_exists[name] = true
- else
- false
+
+ @connection.tables.each do |table|
+ @table_exists[table] = true
end
+
+ @table_exists.key? name
end
def column_for attr