This is an automated email from the ASF dual-hosted git repository.
maxyang pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/cloudberry.git
from 0af03caefc [ORCA] Support PAX AM in ORCA
new 57e45eaa25 Add pg_encoding_set_invalid()
new 884e308829 Specify the encoding of input to fmtId()
new d04a61da06 Fix handling of invalidly encoded data in escaping functions
new 98a58aabd9 Add test of various escape functions
new 762425d2e3 Fix type in test_escape test
new 755d3ba3ec Adapt appendPsqlMetaConnect() to the new fmtId() encoding
expectations.
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/bin/pg_dump/pg_backup_archiver.c | 1 +
src/bin/pg_dump/pg_dump.c | 1 +
src/bin/pg_dump/pg_dumpall.c | 1 +
src/bin/psql/command.c | 3 +
src/bin/scripts/common.c | 5 +-
src/bin/scripts/createdb.c | 2 +
src/bin/scripts/createuser.c | 2 +
src/bin/scripts/dropdb.c | 13 +-
src/bin/scripts/dropuser.c | 3 +-
src/bin/scripts/reindexdb.c | 11 +-
src/bin/scripts/vacuumdb.c | 5 +-
src/common/wchar.c | 55 +-
src/fe_utils/string_utils.c | 274 ++++++--
src/include/fe_utils/string_utils.h | 3 +
src/include/mb/pg_wchar.h | 3 +-
src/interfaces/libpq/fe-exec.c | 135 +++-
src/test/modules/Makefile | 1 +
src/test/modules/test_escape/.gitignore | 2 +
src/test/modules/test_escape/Makefile | 27 +
src/test/modules/test_escape/t/001_test_escape.pl | 53 ++
src/test/modules/test_escape/test_escape.c | 803 ++++++++++++++++++++++
src/test/regress/expected/conversion.out | 4 +
src/test/regress/input/create_function_0.source | 5 +
src/test/regress/output/create_function_0.source | 3 +
src/test/regress/regress.c | 50 ++
src/test/regress/sql/conversion.sql | 3 +
src/tools/msvc/Mkvcbuild.pm | 3 +-
src/tools/pgindent/typedefs.list | 3 +
28 files changed, 1376 insertions(+), 98 deletions(-)
create mode 100644 src/test/modules/test_escape/.gitignore
create mode 100644 src/test/modules/test_escape/Makefile
create mode 100644 src/test/modules/test_escape/t/001_test_escape.pl
create mode 100644 src/test/modules/test_escape/test_escape.c
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]