aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/formatters.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/engines/sql/formatters.rb')
-rw-r--r--lib/arel/engines/sql/formatters.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/arel/engines/sql/formatters.rb b/lib/arel/engines/sql/formatters.rb
index 03e7deec00..da899902ff 100644
--- a/lib/arel/engines/sql/formatters.rb
+++ b/lib/arel/engines/sql/formatters.rb
@@ -14,15 +14,15 @@ module Arel
end
def quote_column_name name
- engine.connection.quote_column_name name
+ @engine.connection.quote_column_name name
end
def quote_table_name name
- engine.connection.quote_table_name name
+ @engine.connection.quote_table_name name
end
def quote value, column = nil
- engine.connection.quote value, column
+ @engine.connection.quote value, column
end
end