提交 ee9d9fb5 编写于 作者: A Aaron Patterson

Merge pull request #3258 from ileitch/3-1-stable

Postgres: Do not attempt to deallocate a statement if the connection is no longer active.
上级 ef3e149d
......@@ -289,7 +289,13 @@ def cache
end
def dealloc(key)
@connection.query "DEALLOCATE #{key}"
@connection.query "DEALLOCATE #{key}" if connection_active?
end
def connection_active?
@connection.status == PGconn::CONNECTION_OK
rescue PGError
false
end
end
......
......@@ -2,6 +2,16 @@
module ActiveRecord::ConnectionAdapters
class PostgreSQLAdapter < AbstractAdapter
class InactivePGconn
def query(*args)
raise PGError
end
def status
PGconn::CONNECTION_BAD
end
end
class StatementPoolTest < ActiveRecord::TestCase
def test_cache_is_per_pid
return skip('must support fork') unless Process.respond_to?(:fork)
......@@ -18,6 +28,12 @@ def test_cache_is_per_pid
Process.waitpid pid
assert $?.success?, 'process should exit successfully'
end
def test_dealloc_does_not_raise_on_inactive_connection
cache = StatementPool.new InactivePGconn.new, 10
cache['foo'] = 'bar'
assert_nothing_raised { cache.clear }
end
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册