Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neondatabase/neon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 74aae15326e69cfa981b4bef7a020ed11a4dcedd
Choose a base ref
..
head repository: neondatabase/neon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 309d74c7615cee485c3506897fba3db69780454f
Choose a head ref
Showing with 5 additions and 0 deletions.
  1. +5 −0 ..._runner/regress/data/test_remote_extensions/test_extension_with_lib/src/test_extension_with_lib.c
Original file line number Diff line number Diff line change
@@ -7,6 +7,11 @@ PG_MODULE_MAGIC;
PG_FUNCTION_INFO_V1(motd);
PG_FUNCTION_INFO_V1(fun_fact);

/* Old versions of Postgres didn't pre-declare this in fmgr.h */
#if PG_MAJORVERSION_NUM <= 15
void _PG_init(void);
#endif

void
_PG_init(void)
{