Merge pull request #3232 from Juanmcuello/pg_prepared_statements

Use the schema_search_path in prepared statements.
This commit is contained in:
Aaron Patterson 2011-10-06 20:08:05 -07:00
commit 3088d23647
2 changed files with 23 additions and 3 deletions

@ -1035,13 +1035,14 @@ def exec_no_cache(sql, binds)
end
def exec_cache(sql, binds)
unless @statements.key? sql
sql_key = "#{schema_search_path}-#{sql}"
unless @statements.key? sql_key
nextkey = @statements.next_key
@connection.prepare nextkey, sql
@statements[sql] = nextkey
@statements[sql_key] = nextkey
end
key = @statements[sql]
key = @statements[sql_key]
# Clear the queue
@connection.get_last_result

@ -38,6 +38,10 @@ class Thing4 < ActiveRecord::Base
set_table_name 'test_schema."Things"'
end
class Thing5 < ActiveRecord::Base
set_table_name 'things'
end
def setup
@connection = ActiveRecord::Base.connection
@connection.execute "CREATE SCHEMA #{SCHEMA_NAME} CREATE TABLE #{TABLE_NAME} (#{COLUMNS.join(',')})"
@ -236,6 +240,21 @@ def test_current_schema
end
end
def test_prepared_statements_with_multiple_schemas
@connection.schema_search_path = SCHEMA_NAME
Thing5.create(:id => 1, :name => "thing inside #{SCHEMA_NAME}", :email => "thing1@localhost", :moment => Time.now)
@connection.schema_search_path = SCHEMA2_NAME
Thing5.create(:id => 1, :name => "thing inside #{SCHEMA2_NAME}", :email => "thing1@localhost", :moment => Time.now)
@connection.schema_search_path = SCHEMA_NAME
assert_equal 1, Thing5.count
@connection.schema_search_path = SCHEMA2_NAME
assert_equal 1, Thing5.count
end
def test_schema_exists?
{
'public' => true,