| From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: tests: Add a test C++ extension module |
| Date: | 2026-01-20 15:43:20 |
| Message-ID: | E1viDt1-001d7E-2I@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers pgsql-hackers |
tests: Add a test C++ extension module
While we already test that our headers are valid C++ using
headerscheck, it turns out that the macros we define might still
expand to invalid C++ code. This adds a minimal test extension that
is compiled using C++ to test that it's actually possible to build and
run extensions written in C++. Future commits will improve C++
compatibility of some of our macros and add usage of them to this
extension make sure that they don't regress in the future.
The test module is for the moment disabled when using MSVC. In
particular, the use of designated initializers in PG_MODULE_MAGIC
would require C++20, for which we are currently not set up. (GCC and
Clang support it as extensions.) It is planned to fix this.
Author: Jelte Fennema-Nio <postgres(at)jeltef(dot)nl>
Discussion: https://www.postgresql.org/message-id/flat/CAGECzQR21OnnKiZO_1rLWO0-16kg1JBxnVq-wymYW0-_1cUNtg(at)mail(dot)gmail(dot)com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/476b35d4e311a3d77a550280d93393e518908b27
Modified Files
--------------
configure | 8 +++++
configure.ac | 7 ++++
src/Makefile.global.in | 2 ++
src/makefiles/meson.build | 2 ++
src/test/modules/Makefile | 6 ++++
src/test/modules/meson.build | 1 +
src/test/modules/test_cplusplusext/.gitignore | 3 ++
src/test/modules/test_cplusplusext/Makefile | 26 ++++++++++++++
src/test/modules/test_cplusplusext/README | 10 ++++++
.../expected/test_cplusplusext.out | 7 ++++
src/test/modules/test_cplusplusext/meson.build | 42 ++++++++++++++++++++++
.../test_cplusplusext/sql/test_cplusplusext.sql | 3 ++
.../test_cplusplusext/test_cplusplusext--1.0.sql | 8 +++++
.../test_cplusplusext/test_cplusplusext.control | 4 +++
.../test_cplusplusext/test_cplusplusext.cpp | 37 +++++++++++++++++++
15 files changed, 166 insertions(+)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Michael Paquier | 2026-01-20 22:48:20 | pgsql: pg_stat_statements: Rework test order |
| Previous Message | Álvaro Herrera | 2026-01-20 15:41:39 | pgsql: Use integer backend type when exec'ing a postmaster child |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Alvaro Herrera | 2026-01-20 15:43:48 | Re: log_min_messages per backend type |
| Previous Message | Antonin Houska | 2026-01-20 15:39:10 | Re: Adding REPACK [concurrently] |