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

From newtglobal postgresql_contributors
Subject Re: Add XMLNamespaces to XMLElement
Date
Msg-id 174184870008.294107.2552016116607061478.pgcf@coridan.postgresql.org
Whole thread Raw
In response to Re: Add XMLNamespaces to XMLElement  (Jim Jones <jim.jones@uni-muenster.de>)
List pgsql-hackers
The following review has been posted through the commitfest application:
make installcheck-world:  not tested
Implements feature:       not tested
Spec compliant:           not tested
Documentation:            not tested

Hi Pavel,

I have tested this patch, and it proves to be highly useful when handling XMLNAMESPACES() with both DEFAULT and NO
DEFAULToptions. The following test cases confirm its correctness:
 


SELECT xmlelement(
    NAME "foo",
    XMLNAMESPACES('http://x.y' AS xy, 'http://a.b' AS ab, DEFAULT 'http://d.e'),
    xmlelement(NAME "foot", 
        xmlelement(NAME "xy:shoe"), 
        xmlelement(NAME "ab:lace")
    )
);

SELECT xmlelement(
    NAME "foo",
    XMLNAMESPACES('http://x.y' AS xy, 'http://a.b' AS ab, NO DEFAULT),
    xmlelement(NAME "foot", 
        xmlelement(NAME "xy:shoe"), 
        xmlelement(NAME "ab:lace")
    )
);
Additionally, I verified that the patch correctly supports multiple namespaces when using both DEFAULT and NO DEFAULT,
ensuringexpected behavior across different use cases.
 

Great work on this improvement!

pgsql-hackers by date:

Previous
From: newtglobal postgresql_contributors
Date:
Subject: Re: in BeginCopyTo make materialized view using COPY TO instead of COPY (query).
Next
From: newtglobal postgresql_contributors
Date:
Subject: Re: pg_dump, pg_dumpall, pg_restore: Add --no-policies option