From ee02bfcaf0ba15a72de4bbee80311213fa478c2d Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Tue, 23 Jul 2013 16:39:22 -0400 Subject: [PATCH] handle hstore type Signed-off-by: Jason Etheridge --- Open-ILS/src/sql/Pg/make-pgtap-tests.pl | 3 +++ 1 file changed, 3 insertions(+) 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)"; -- 2.11.0