[open-ils-commits] r16263 - tags/rel_1_6_0_4/Open-ILS/src/sql/Pg (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Apr 16 20:05:47 EDT 2010


Author: miker
Date: 2010-04-16 20:05:46 -0400 (Fri, 16 Apr 2010)
New Revision: 16263

Modified:
   tags/rel_1_6_0_4/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql
Log:
not sure where the name "materialized.simple_record" came from, but it is not correct. correcting

Modified: tags/rel_1_6_0_4/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql
===================================================================
--- tags/rel_1_6_0_4/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql	2010-04-16 21:08:59 UTC (rev 16262)
+++ tags/rel_1_6_0_4/Open-ILS/src/sql/Pg/1.6.0.3-1.6.0.4-upgrade-db.sql	2010-04-17 00:05:46 UTC (rev 16263)
@@ -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