[open-ils-commits] r9879 - branches/rel_1_2/Open-ILS/src/sql/Pg
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jun 19 13:13:10 EDT 2008
Author: miker
Date: 2008-06-19 13:13:08 -0400 (Thu, 19 Jun 2008)
New Revision: 9879
Modified:
branches/rel_1_2/Open-ILS/src/sql/Pg/extend-reporter.sql
Log:
typo
Modified: branches/rel_1_2/Open-ILS/src/sql/Pg/extend-reporter.sql
===================================================================
--- branches/rel_1_2/Open-ILS/src/sql/Pg/extend-reporter.sql 2008-06-19 17:12:02 UTC (rev 9878)
+++ branches/rel_1_2/Open-ILS/src/sql/Pg/extend-reporter.sql 2008-06-19 17:13:08 UTC (rev 9879)
@@ -28,7 +28,7 @@
CREATE VIEW extend_reporter.full_circ_count AS
SELECT cp.id, COALESCE(sum(c.circ_count), 0::bigint) + COALESCE(count(circ.id), 0::bigint) AS circ_count
FROM asset."copy" cp
- LEFT JOIN extend_reporter.legcay_circ_count c USING (id)
+ LEFT JOIN extend_reporter.legacy_circ_count c USING (id)
LEFT JOIN "action".circulation circ ON circ.target_copy = c.id
GROUP BY cp.id;
More information about the open-ils-commits
mailing list