From 3bd726333c296df1abe3a9248bef8cc3d43ed87a Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 21 Aug 2004 00:26:54 +0000 Subject: [PATCH] Recent tightening of allowed array-literal syntax broke one test case in contrib/ltree. Fix. --- contrib/ltree/expected/ltree.out | 2 +- contrib/ltree/sql/ltree.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/ltree/expected/ltree.out b/contrib/ltree/expected/ltree.out index 2a24797534..3ce1ecf293 100644 --- a/contrib/ltree/expected/ltree.out +++ b/contrib/ltree/expected/ltree.out @@ -239,7 +239,7 @@ SELECT ''::ltree || 'Top.Child1.Child2'::ltree; Top.Child1.Child2 (1 row) -SELECT lca('{la.2.3,1.2.3.4.5.6,}') IS NULL; +SELECT lca('{la.2.3,1.2.3.4.5.6,""}') IS NULL; ?column? ---------- t diff --git a/contrib/ltree/sql/ltree.sql b/contrib/ltree/sql/ltree.sql index 8d28c9e53e..3a155ea22b 100644 --- a/contrib/ltree/sql/ltree.sql +++ b/contrib/ltree/sql/ltree.sql @@ -47,7 +47,7 @@ SELECT 'Top_0'::ltree || 'Top.Child1.Child2'::ltree; SELECT 'Top.Child1.Child2'::ltree || ''::ltree; SELECT ''::ltree || 'Top.Child1.Child2'::ltree; -SELECT lca('{la.2.3,1.2.3.4.5.6,}') IS NULL; +SELECT lca('{la.2.3,1.2.3.4.5.6,""}') IS NULL; SELECT lca('{la.2.3,1.2.3.4.5.6}') IS NULL; SELECT lca('{1.la.2.3,1.2.3.4.5.6}'); SELECT lca('{1.2.3,1.2.3.4.5.6}');