This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit c26d10563eaa29961ae895a9fbe3afae7d24a9b1
tree ee66087f52201971914285aafcc8c3bdafaae89d
parent 6a6b4392c16c665eb713705f2b38e959a658eeef
tree ee66087f52201971914285aafcc8c3bdafaae89d
parent 6a6b4392c16c665eb713705f2b38e959a658eeef
... |
... |
|












After this commit I see in db:test:purge, drop_database on configuration with schema_search_path broken: rake aborted! PGError: ERROR: schema “my_schema” does not exist : SET search_path TO my_schema
For fix:
-vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb + vendor.patched/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb@ -856,7 +856,7@ module ActiveRecord end end self.client_min_messages = @config[:min_messages] if @config[:min_messages] - self.schema_search_path = @config[:schema_search_path] || @config[:schema_order] + self.schema_search_path = @config[:schema_search_path] || @config[:schema_order] unless @config[:database] == ‘template1’ endOh, sorry… It’s patch. :( In short: activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb:856 add “unless @config[:database] == ‘template1’”