diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2021-05-12 07:20:10 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2021-05-12 07:42:51 +0200 |
commit | ec6e70c79fffe9292402ee602d3742a8c7d31bd2 (patch) | |
tree | 617199e1c58f036694df7423a1273f297df172c4 /src/backend/utils/adt/xml.c | |
parent | a363bc6da96b14d27e1cae1bae97242eb6ade5e6 (diff) | |
download | postgresql-ec6e70c79fffe9292402ee602d3742a8c7d31bd2.tar.gz postgresql-ec6e70c79fffe9292402ee602d3742a8c7d31bd2.zip |
Refactor some error messages for easier translation
Diffstat (limited to 'src/backend/utils/adt/xml.c')
-rw-r--r-- | src/backend/utils/adt/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/xml.c b/src/backend/utils/adt/xml.c index 7350940b66d..3ae5cfac9e0 100644 --- a/src/backend/utils/adt/xml.c +++ b/src/backend/utils/adt/xml.c @@ -221,7 +221,7 @@ const TableFuncRoutine XmlTableRoutine = (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), \ errmsg("unsupported XML feature"), \ errdetail("This functionality requires the server to be built with libxml support."), \ - errhint("You need to rebuild PostgreSQL using --with-libxml."))) + errhint("You need to rebuild PostgreSQL using %s.", "--with-libxml"))) /* from SQL/XML:2008 section 4.9 */ |