Re: [COMMITTERS] pgsql: Support XMLTABLE query expression

2017-03-08 Thread Alvaro Herrera
Tom Lane wrote: > Alvaro Herrera writes: > > Tom Lane wrote: > >> This fails immediately on RHEL6: > > > Yeah, i noticed on termite as well. Apparently xmlXPathSetContextNode > > appeared in 2.9.1 only, which was released in 2013. :-( > > > The easiest for now is to disable XMLTABLE completely

Re: [COMMITTERS] pgsql: Support XMLTABLE query expression

2017-03-08 Thread Tom Lane
Alvaro Herrera writes: > Tom Lane wrote: >> This fails immediately on RHEL6: > Yeah, i noticed on termite as well. Apparently xmlXPathSetContextNode > appeared in 2.9.1 only, which was released in 2013. :-( > The easiest for now is to disable XMLTABLE completely with older > libxml2. That doe

Re: [COMMITTERS] pgsql: Support XMLTABLE query expression

2017-03-08 Thread Alvaro Herrera
Tom Lane wrote: > Alvaro Herrera writes: > > Support XMLTABLE query expression > > This fails immediately on RHEL6: Yeah, i noticed on termite as well. Apparently xmlXPathSetContextNode appeared in 2.9.1 only, which was released in 2013. :-( The easiest for now is to disable XMLTABLE complete

Re: [COMMITTERS] pgsql: Support XMLTABLE query expression

2017-03-08 Thread Tom Lane
Alvaro Herrera writes: > Support XMLTABLE query expression This fails immediately on RHEL6: $ ./configure --with-libxml [ other usual arguments ] $ make -s xml.c: In function 'XmlTableGetValue': xml.c:4434: warning: implicit declaration of function 'xmlXPathSetContextNode' utils/adt/xml.o: In fu

[COMMITTERS] pgsql: Support XMLTABLE query expression

2017-03-08 Thread Alvaro Herrera
Support XMLTABLE query expression XMLTABLE is defined by the SQL/XML standard as a feature that allows turning XML-formatted data into relational form, so that it can be used as a in the FROM clause of a query. This new construct provides significant simplicity and performance benefit for XML da