← Back to team overview

mvhub-dev team mailing list archive

[Branch ~mvhub-commit/mvhub/trunk] Rev 415: kludge to handle diff between production and development dbs

 

------------------------------------------------------------
revno: 415
tags: 2010-06-18
committer: Dan MacNeil <dan@xxxxxxxxxx>
branch nick: trunk
timestamp: Fri 2010-06-18 15:18:28 -0400
message:
  kludge to handle diff between production and development dbs
modified:
  app-mvhub/setup/database/sql/005_synonym_cat_functions.sql


--
lp:mvhub
https://code.launchpad.net/~mvhub-commit/mvhub/trunk

Your team MVHub Developers is subscribed to branch lp:mvhub.
To unsubscribe from this branch go to https://code.launchpad.net/~mvhub-commit/mvhub/trunk/+edit-subscription
=== modified file 'app-mvhub/setup/database/sql/005_synonym_cat_functions.sql'
--- app-mvhub/setup/database/sql/005_synonym_cat_functions.sql	2010-06-16 16:30:44 +0000
+++ app-mvhub/setup/database/sql/005_synonym_cat_functions.sql	2010-06-18 19:18:28 +0000
@@ -14,6 +14,8 @@
 /* Returns a concatenation of all of the values in a grouped column, 
    delimited by a comma and a space. 
 */
+DROP AGGREGATE IF EXISTS our_aggregate_concat;
+
 CREATE AGGREGATE our_aggregate_concat (
     sfunc = our_concat,
     basetype = text,