Use unicode escape instead of raw bytes, for ease of maintenance
authorMike Rylander <mrylander@gmail.com>
Fri, 6 May 2011 16:58:17 +0000 (12:58 -0400)
committerMike Rylander <mrylander@gmail.com>
Mon, 11 Jul 2011 13:06:16 +0000 (09:06 -0400)
Open-ILS/src/sql/Pg/020.schema.functions.sql

index 262f6cf..d1621e6 100644 (file)
@@ -357,7 +357,7 @@ BEGIN
         FOR sf IN SELECT * FROM regexp_split_to_table(acsaf.sf_list,'') LOOP
             tmp_text := oils_xpath_string('//*[@tag="'||tag_used||'"]/*[@code="'||sf||'"]', marcxml);
             IF tmp_text IS NOT NULL THEN
-                heading_text := heading_text || E'' || sf || ' ' || tmp_text;
+                heading_text := heading_text || E'\U2021' || sf || ' ' || tmp_text;
             END IF;
         END LOOP;
         EXIT WHEN heading_text <> '';