From: Jason Etheridge Date: Tue, 23 Jul 2013 20:39:22 +0000 (-0400) Subject: handle hstore type X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ee02bfcaf0ba15a72de4bbee80311213fa478c2d;p=working%2FEvergreen.git handle hstore type 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 b5665e692f..7313175405 100755 --- a/Open-ILS/src/sql/Pg/make-pgtap-tests.pl +++ b/Open-ILS/src/sql/Pg/make-pgtap-tests.pl @@ -89,6 +89,9 @@ foreach my $schema ( @schemas ) { } if ($col_type eq 'USER-DEFINED' && defined $col_udt_schema) { $col_type = "$col_udt_schema.$col_udt_name"; + if ($col_type eq 'public.hstore') { + $col_type = 'hstore'; # an exception + } } if ($col_type eq 'character' && defined $col_character_maximum_length) { $col_type .= "($col_character_maximum_length)";