adding a script to run between the upgrade scripts
authorChris Sharp <csharp@georgialibraries.org>
Fri, 28 Oct 2011 11:57:31 +0000 (07:57 -0400)
committerChris Sharp <csharp@georgialibraries.org>
Mon, 28 Nov 2011 19:34:52 +0000 (14:34 -0500)
Open-ILS/src/sql/Pg/post-2.0-pre-2.1-tasks.sql [new file with mode: 0644]

diff --git a/Open-ILS/src/sql/Pg/post-2.0-pre-2.1-tasks.sql b/Open-ILS/src/sql/Pg/post-2.0-pre-2.1-tasks.sql
new file mode 100644 (file)
index 0000000..fe827a3
--- /dev/null
@@ -0,0 +1,7 @@
+-- the 2.0 to 2.1 upgrade script requires that the search path for functions is updated
+-- the script tries to do this itself, but something is not working.
+-- see https://bugs.launchpad.net/evergreen/+bug/881774 for more information
+
+ALTER DATABASE evergreen SET search_path=evergreen, public, pg_catalog;
+
+