From 7912cb19c3f03e819d637c02d2c180a56bd97806 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 29 Aug 2017 11:06:11 +0300 Subject: [PATCH] Update hstore expected output to match what you get on GPDB. --- contrib/hstore/expected/hstore.out | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/hstore/expected/hstore.out b/contrib/hstore/expected/hstore.out index dc0ae1c511..3675eaa458 100755 --- a/contrib/hstore/expected/hstore.out +++ b/contrib/hstore/expected/hstore.out @@ -558,6 +558,7 @@ select 'a=>b, b=>1, c=>NULL'::hstore @> 'a=>b, c=>q'; (1 row) CREATE TABLE testhstore (h hstore); +NOTICE: Table doesn't have 'DISTRIBUTED BY' clause, and no column type is suitable for a distribution key. Creating a NULL policy entry. \copy testhstore from 'data/hstore.data' select count(*) from testhstore where h @> 'wait=>NULL'; count @@ -611,6 +612,7 @@ select count(*) from testhstore where h ? 'public'; drop index hidx; create index hidx on testhstore using gin (h); +ERROR: GIN indexes are not supported set enable_seqscan=off; select count(*) from testhstore where h @> 'wait=>NULL'; count -- GitLab