Re: Add XMLNamespaces to XMLElement - Mailing list pgsql-hackers

From Umar Hayat
Subject Re: Add XMLNamespaces to XMLElement
Date
Msg-id CAD68Dp1auo16XUOT6Zz-cz7UzrH3eERN2hhwVYt9cbhq+Uby9Q@mail.gmail.com
Whole thread Raw
In response to Re: Add XMLNamespaces to XMLElement  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-hackers
Hi Jim & Pavel,
Sorry for getting back a bit late on this. Few more case you might
need consider:

As I mentioned in my first static review about XMLTable existing
behaviour might change, I give it a run time review and here are few
findings:

1. Because of this patch XMLTable namespace will accept NO DEFAULT
value, I was expecting an error message based on prior behavior '' but
If I run following query it show something different:
"
> SELECT * FROM XMLTABLE(XMLNAMESPACES(NO DEFAULT),
                      '/rows/row'
                      PASSING '<rows
                      xmlns="http://x.y"><row><a>10</a></row></rows>'
                      COLUMNS a int PATH 'a');
ERROR:  cache lookup failed for type 0
"
Can you please re-check this behaviour (there might be something wrong
with my build environment)

2. Seems like namespace as ColumnRef was already allowed (I doubt if
that's a correct implementation, I see other DB allows only strings
AFAIK), for non-default namespaces may be its fair, should this be
allowed for default namespace, any opinion.
create table tbl1 ( col1 text);
insert into tbl1 values ('abc');
insert into tbl1 values ('def');
select xmlelement(NAME "root", xmlnamespaces(default col1)) from tbl1;
     xmlelement
---------------------
 <root xmlns="abc"/>
 <root xmlns="def"/>
(2 rows)

Changing status in commitfest, feel free to revert back.

Regards
Umar Hayat

On Sun, 19 Jan 2025 at 18:33, Jim Jones <jim.jones@uni-muenster.de> wrote:
>
>
> On 16.01.25 08:36, Pavel Stehule wrote:
> > Now, I have not any objections against the code
> >
> > The patch has doc and enough regress tests
> > The patching and compilation without problems
> > make check-world passed
> >
> > I'll mark this patch as ready for committer
>
>
> rebase due to gram.y changes introduced in 80feb72
>
>
> --
> Jim



-- 
Umar Hayat
Bitnine (https://bitnine.net/)



pgsql-hackers by date:

Previous
From: Logan MAUZAIZE
Date:
Subject: Proper way to clean-up connection for reuse (`DISCARD ALL` and default role)
Next
From: Tom Lane
Date:
Subject: Re: [PATCH] Add roman support for to_number function