Skip to content

Commit

Permalink
Fix GH #5430. A Payload name for schema_search_path should be SCHEMA.
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyj committed Mar 14, 2012
1 parent 35262b7 commit 2d787f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Expand Up @@ -1006,7 +1006,7 @@ def drop_schema schema_name
# This should be not be called manually but set in database.yml.
def schema_search_path=(schema_csv)
if schema_csv
execute "SET search_path TO #{schema_csv}"
execute("SET search_path TO #{schema_csv}", 'SCHEMA')
@schema_search_path = schema_csv
end
end
Expand Down
7 changes: 7 additions & 0 deletions activerecord/test/cases/adapters/postgresql/explain_test.rb
Expand Up @@ -22,6 +22,13 @@ def test_explain_with_eager_loading
assert_match %(EXPLAIN for: SELECT "audit_logs".* FROM "audit_logs" WHERE "audit_logs"."developer_id" IN (1)), explain
assert_match %(Seq Scan on audit_logs), explain
end

def test_dont_explain_for_set_search_path
queries = Thread.current[:available_queries_for_explain] = []
ActiveRecord::Base.connection.schema_search_path = "public"
assert queries.empty?
end

end
end
end
Expand Down

0 comments on commit 2d787f8

Please sign in to comment.