Revert "Guard ActionRecord::Base.exec_sql against a readonly PostgreSQL cluster."

This reverts commit c2a5e603c2.
This commit is contained in:
Guo Xiang Tan 2017-10-19 15:39:03 +08:00
parent c2a5e603c2
commit 9d6449ae92

View File

@ -5,8 +5,6 @@ class ActiveRecord::Base
conn = ActiveRecord::Base.connection
sql = ActiveRecord::Base.send(:sanitize_sql_array, args)
conn.raw_connection.exec(sql)
rescue PG::ReadOnlySqlTransaction
Rails.logger.warn("WARN: PostgreSQL is in a readonly state. Performed a noop")
end
def self.exec_sql_row_count(*args)