From 3ff7f85921fc4ce24ba4869307f74f4e3f39991f Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 24 Jul 2013 15:49:20 -0400 Subject: [PATCH] narrow the workaround for a hard exception Signed-off-by: Jason Etheridge --- Open-ILS/src/sql/Pg/make-pgtap-tests.pl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 -- '; } -- 2.11.0