Re: Add XMLNamespaces to XMLElement

2025-01-15 Thread Pavel Stehule
Hi st 15. 1. 2025 v 21:35 odesílatel Jim Jones napsal: > Hi Umar, Hi Pavel, > > On 26.12.24 14:46, Jim Jones wrote: > > The idea of NO DEFAULT is pretty much to free an element (and its > > children) from a previous DEFAULT in the same scope. > > > > SELECT > > xmlserialize(DOCUMENT > > xm

Re: Add XMLNamespaces to XMLElement

2025-01-15 Thread Jim Jones
Hi Umar, Hi Pavel, On 26.12.24 14:46, Jim Jones wrote: > The idea of NO DEFAULT is pretty much to free an element (and its > children) from a previous DEFAULT in the same scope. > > SELECT >   xmlserialize(DOCUMENT >     xmlelement(NAME "root", >   xmlnamespaces(DEFAULT 'http:/x.y/ns1'), >    

Re: Add XMLNamespaces to XMLElement

2024-12-31 Thread Pavel Stehule
čt 26. 12. 2024 v 14:46 odesílatel Jim Jones napsal: > Hi Umar, hi Pavel, > > Thanks for taking a look at this patch! > > On 26.12.24 05:15, Umar Hayat wrote: > > Hi, > > +1 for the enhancement. > > > > I haven't compiled and reviewed the full patch yet, please see a few > > comments from my side

Re: Add XMLNamespaces to XMLElement

2024-12-26 Thread Jim Jones
Hi Umar, hi Pavel, Thanks for taking a look at this patch! On 26.12.24 05:15, Umar Hayat wrote: > Hi, > +1 for the enhancement. > > I haven't compiled and reviewed the full patch yet, please see a few > comments from my side based on static analysis. > > 1. Though changes are targeted for XMLNAME

Re: Add XMLNamespaces to XMLElement

2024-12-25 Thread Umar Hayat
Hi, +1 for the enhancement. I haven't compiled and reviewed the full patch yet, please see a few comments from my side based on static analysis. 1. Though changes are targeted for XMLNAMESPACES for XMLElement but in my opinion it will affect XMLTABLE as well because the 'xml_namespace_list' rule

Re: Add XMLNamespaces to XMLElement

2024-12-20 Thread Pavel Stehule
Hi so 21. 12. 2024 v 0:51 odesílatel Jim Jones napsal: > Hi, > > I'd like to propose the implementation of the XMLNamespaces option for > XMLElement. > > XMLNAMESPACES(nsuri AS nsprefix) > XMLNAMESPACES(DEFAULT default-nsuri) > XMLNAMESPACES(NO DEFAULT) > > * nsprefix: Namespace's p

Add XMLNamespaces to XMLElement

2024-12-20 Thread Jim Jones
Hi, I'd like to propose the implementation of the XMLNamespaces option for XMLElement. XMLNAMESPACES(nsuri AS nsprefix) XMLNAMESPACES(DEFAULT default-nsuri) XMLNAMESPACES(NO DEFAULT) * nsprefix:  Namespace's prefix. * nsuri: Namespace's URI. * DEFAULT default-nsuri: S