pgsql: Fix namespace handling in xpath function

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Fix namespace handling in xpath function
Дата
Msg-id E1YCgle-0004nx-Pr@gemulon.postgresql.org
обсуждение исходный текст
Ответы Re: pgsql: Fix namespace handling in xpath function  (martipamies <martipamies@gmail.com>)
Список pgsql-committers
Fix namespace handling in xpath function

Previously, the xml value resulting from an xpath query would not have
namespace declarations if the namespace declarations were attached to
an ancestor element in the input xml value.  That means the output value
was not correct XML.  Fix that by running the result value through
xmlCopyNode(), which produces the correct namespace declarations.

Author: Ali Akbar <the.apaan@gmail.com>

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/6bbf75192801c0965cec28c8d93c4ed5f2e68b20

Modified Files
--------------
src/backend/utils/adt/xml.c         |   34 ++++++++++++++++++++++++++--------
src/test/regress/expected/xml.out   |   15 +++++++++++++++
src/test/regress/expected/xml_1.out |   12 ++++++++++++
src/test/regress/sql/xml.sql        |    2 ++
4 files changed, 55 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Fix namespace handling in xpath function
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Fix namespace handling in xpath function