[mb-commits] branch, beta, updated. When creating the 'page_index' function, specifically alias the ' musicbrainz....
MusicBrainz Git Server <[email protected]>
| Newsgroups | gmane.comp.audio.musicbrainz.cvs |
|---|---|
| Message-ID | <E1TiQJy-0003dY-Ep@wiley> |
The branch, beta has been updated
via http://git.musicbrainz.org/gitweb/?p=musicbrainz-server/core.git;a=commit;h=c0c0f6646132ffceefc767159bdba5d5fc4afcc2 (commit)
from http://git.musicbrainz.org/gitweb/?p=musicbrainz-server/core.git;a=commit;h=2d46c5daaebb70424c0095e16585861afd6ea1b5 (commit)
Summary of changes:
admin/sql/CreateFunctions.sql | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c0c0f6646132ffceefc767159bdba5d5fc4afcc2
Author: Oliver Charles <[email protected]>
Date: Tue Dec 11 13:56:21 2012 +0000
When creating the 'page_index' function, specifically alias the 'musicbrainz.musicbrainz_unaccent' function
diff --git a/admin/sql/CreateFunctions.sql b/admin/sql/CreateFunctions.sql
index 9772a11..e2e9066 100644
--- a/admin/sql/CreateFunctions.sql
+++ b/admin/sql/CreateFunctions.sql
@@ -16,7 +16,7 @@ DECLARE
i integer;
x varchar;
BEGIN
- input := regexp_replace(upper(substr(musicbrainz_unaccent(txt), 1, 6)), '[^A-Z ]', '_', 'g');
+ input := regexp_replace(upper(substr(musicbrainz.musicbrainz_unaccent(txt), 1, 6)), '[^A-Z ]', '_', 'g');
res := 0;
FOR i IN 1..6 LOOP
x := substr(input, i, 1);
-----------------------------------------------------------------------
hooks/post-receive
--
mb_server