mirror of
https://github.com/HypoPG/hypopg
synced 2026-05-24 09:38:21 +00:00
Fix expected output for hypopg_get_indexdef() test
This commit is contained in:
parent
3d33823821
commit
6c2a803e7e
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue