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)