aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-10-21 11:27:28 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-10-26 13:44:11 -0700
commit02128d628c4084eccd93c41db40f4d83db17f53c (patch)
treeb6f9d3fbc37d1c75ab27aacd347f36e14be0f26a /activerecord/lib/active_record/connection_adapters
parent9d9aed433bd29eefb14807c02050cb8b88f15f0e (diff)
downloadrails-02128d628c4084eccd93c41db40f4d83db17f53c.tar.gz
rails-02128d628c4084eccd93c41db40f4d83db17f53c.tar.bz2
rails-02128d628c4084eccd93c41db40f4d83db17f53c.zip
setting the authorized session clears the statement cache
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index e785cc6fea..4792f824cf 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -391,6 +391,7 @@ module ActiveRecord
# Set the authorized user for this session
def session_auth=(user)
+ clear_cache!
exec "SET SESSION AUTHORIZATION #{user}"
end