From 6c2a803e7e0632f36fd80bee9e0798eb0b3899df Mon Sep 17 00:00:00 2001 From: Julien Rouhaud Date: Thu, 29 Jun 2017 21:44:17 +0200 Subject: [PATCH] Fix expected output for hypopg_get_indexdef() test --- expected/hypopg.out | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/expected/hypopg.out b/expected/hypopg.out index baa3b34..685f49d 100644 --- a/expected/hypopg.out +++ b/expected/hypopg.out @@ -157,8 +157,8 @@ WHERE e ~ 'Index.*<\d+>btree_hypo.*'; -- Deparse an index DDL, with almost every possible pathcode SELECT hypopg_get_indexdef(indexrelid) FROM hypopg_create_index('create index on hypo using btree(id desc nulls first, cast(md5(val) as bpchar) bpchar_pattern_ops) with (fillfactor = 10) WHERE id < 1000 AND id +1 %2 = 3'); - hypopg_get_indexdef ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- - CREATE INDEX ON public.hypo USING btree (id DESC, ((md5(hypo.val))::bpchar) bpchar_pattern_ops) WITH (fillfactor = 10) WHERE ((id < 1000) AND ((id + (1 % 2)) = 3)) + hypopg_get_indexdef +---------------------------------------------------------------------------------------------------------------------------------------------------------------- + CREATE INDEX ON public.hypo USING btree (id DESC, ((md5(val))::bpchar) bpchar_pattern_ops) WITH (fillfactor = 10) WHERE ((id < 1000) AND ((id + (1 % 2)) = 3)) (1 row)