[PATCH] Add support to table_to_xmlschema regex when timestamp has time zone

Started by Renan Soares Lopesabout 4 years ago3 messageshackers
Jump to latest
#1Renan Soares Lopes
renans.l@icloud.com

Hello,I added a patch to fix table_to_xmlschema, could you point me how to add a unit test to that?

Attachments:

0001-fix-table_to_xmlschema-regex-for-timestamp-with-time.patchtext/x-patch; name=0001-fix-table_to_xmlschema-regex-for-timestamp-with-time.patchDownload+9-3
#2Euler Taveira
euler@eulerto.com
In reply to: Renan Soares Lopes (#1)
Re: [PATCH] Add support to table_to_xmlschema regex when timestamp has time zone

On Fri, Feb 18, 2022, at 2:47 PM, Renan Soares Lopes wrote:

Hello,

I added a patch to fix table_to_xmlschema, could you point me how to add a unit test to that?

You should edit src/test/regress/expected/xmlmap.out. In this case, you should
also modify src/test/regress/expected/xmlmap_1.out that the output from this
test when you build without libxml support. Run 'make check' to test your fix
after building with/without libxml support.

Regarding this fix, it looks good to me. FWIW, character class escape is
defined here [1]https://www.w3.org/TR/xmlschema11-2/#cces.

[1]: https://www.w3.org/TR/xmlschema11-2/#cces

--
Euler Taveira
EDB https://www.enterprisedb.com/

#3Tom Lane
tgl@sss.pgh.pa.us
In reply to: Euler Taveira (#2)
Re: [PATCH] Add support to table_to_xmlschema regex when timestamp has time zone

"Euler Taveira" <euler@eulerto.com> writes:

On Fri, Feb 18, 2022, at 2:47 PM, Renan Soares Lopes wrote:

I added a patch to fix table_to_xmlschema, could you point me how to add a unit test to that?

You should edit src/test/regress/expected/xmlmap.out. In this case, you should
also modify src/test/regress/expected/xmlmap_1.out that the output from this
test when you build without libxml support. Run 'make check' to test your fix
after building with/without libxml support.

Regarding this fix, it looks good to me. FWIW, character class escape is
defined here [1].

LGTM too. Pushed after rethinking the test case a bit.

regards, tom lane