Age Owner Branch data TLA Line data Source code
1 : : /*
2 : : * test_ext.c
3 : : *
4 : : * Dummy C extension for testing extension_control_path with pg_upgrade
5 : : *
6 : : * Portions Copyright (c) 2026, PostgreSQL Global Development Group
7 : : */
8 : : #include "postgres.h"
9 : :
10 : : #include "fmgr.h"
11 : :
50 peter@eisentraut.org 12 :GNC 5 : PG_MODULE_MAGIC;
13 : :
14 : 4 : PG_FUNCTION_INFO_V1(test_ext);
15 : :
16 : : Datum
17 : 2 : test_ext(PG_FUNCTION_ARGS)
18 : : {
19 [ + - ]: 2 : ereport(NOTICE,
20 : : (errmsg("running successful")));
21 : 2 : PG_RETURN_VOID();
22 : : }
|