From: Jason Etheridge Date: Wed, 24 Jul 2013 19:49:20 +0000 (-0400) Subject: narrow the workaround for a hard exception X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3ff7f85921fc4ce24ba4869307f74f4e3f39991f;p=working%2FEvergreen.git narrow the workaround for a hard exception Signed-off-by: Jason Etheridge --- diff --git a/Open-ILS/src/sql/Pg/make-pgtap-tests.pl b/Open-ILS/src/sql/Pg/make-pgtap-tests.pl index 336155989b..cc3ffb917a 100755 --- a/Open-ILS/src/sql/Pg/make-pgtap-tests.pl +++ b/Open-ILS/src/sql/Pg/make-pgtap-tests.pl @@ -301,7 +301,13 @@ sub handle_columns { } elsif ($col_type eq 'integer' && $col_default =~ '\(-?\d+\)') { # FIXME - ERROR: invalid input syntax for integer: "(-1)" $fixme = '-- FIXME type 4 -- '; - } elsif ($col_type_original eq 'USER-DEFINED') { + } elsif ($col_type_original eq 'USER-DEFINED' + && ( + $col_udt_name eq 'hstore' + || $col_udt_name eq 'authority_queue_queue_type' + || $col_udt_name eq 'bib_queue_queue_type' + ) + ) { # FIXME - ERROR: Unexpected end of string $fixme = '-- FIXME type 5 -- '; }