Lp 1730726: Fix lp1501781-unaccent_and_squash.pg for PostgreSQL 10
authorJason Stephenson <jason@sigio.com>
Tue, 6 Nov 2018 16:00:33 +0000 (11:00 -0500)
committerBen Shum <ben@evergreener.net>
Fri, 14 Dec 2018 19:35:58 +0000 (14:35 -0500)
PostgreSQL 10 has improvements in the unaccent function used by the
evergreen.unaccent_and_squash function.  The test needs a small
modification to take this into account.  Actual code change from Mike
Rylander with a little typo fix.

Signed-off-by: Jason Stephenson <jason@sigio.com>
Signed-off-by: Ben Shum <ben@evergreener.net>
Open-ILS/src/sql/Pg/t/lp1501781-unaccent_and_squash.pg

index c90014f..3238804 100644 (file)
@@ -54,7 +54,7 @@ SELECT is(evergreen.unaccent_and_squash('El Niño'),
           'elnino', 'Spanish "The Kid"');
 
 SELECT is(evergreen.unaccent_and_squash('Œuvres'),
-          'euvres', 'oe ligature');
+          CASE WHEN regexp_replace(regexp_replace(version(),'\..+',''),'^PostgreSQL ','')::INT >= 10 THEN 'oeuvres' ELSE 'euvres' END, 'oe ligature');
 
 -- Punctuation Tests