[open-ils-commits] r16327 - branches/rel_1_6_0/Open-ILS/src/sql/Pg (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Apr 27 23:36:36 EDT 2010
Author: dbs
Date: 2010-04-27 23:36:33 -0400 (Tue, 27 Apr 2010)
New Revision: 16327
Modified:
branches/rel_1_6_0/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql
Log:
Merge r16263 from tags/rel_1_6_0_4 into rel_1_6_0
Correct "materialized.simple_record" to "reporter.materialized_simple_record"
Modified: branches/rel_1_6_0/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql
===================================================================
--- branches/rel_1_6_0/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql 2010-04-27 22:01:28 UTC (rev 16326)
+++ branches/rel_1_6_0/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql 2010-04-28 03:36:33 UTC (rev 16327)
@@ -93,10 +93,10 @@
-- Now rebuild the materialized simple record table that was built on reporter.old_super_simple_record
-- If you're using Slony, delete instead of truncate!
---DELETE FROM materialized.simple_record;
-TRUNCATE TABLE materialized.simple_record;
+--DELETE FROM reporter.materialized_simple_record;
+TRUNCATE TABLE reporter.materialized_simple_record;
-INSERT INTO materialized.simple_record
+INSERT INTO reporter.materialized_simple_record
SELECT * FROM reporter.old_super_simple_record;
-- Replace the billable transaction summary view with one that is more cautious about NULL values
More information about the open-ils-commits
mailing list