mirror of
https://github.com/neondatabase/neon.git
synced 2026-05-16 12:40:36 +00:00
This makes it much more convenient to use in the common case that you want to flush all the WAL. (Passing pg_current_wal_insert_lsn() as the argument doesn't work for the same reasons as explained in the comments: we need to be back off to the beginning of a page if the previous record ended at page boundary.) I plan to use this to fix the issue that Arseny Sher called out at https://github.com/neondatabase/neon/pull/7288#discussion_r1660063852
16 lines
308 B
Makefile
16 lines
308 B
Makefile
# pgxs/neon_test_utils/Makefile
|
|
|
|
|
|
MODULE_big = neon_test_utils
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
neontest.o
|
|
|
|
EXTENSION = neon_test_utils
|
|
DATA = neon_test_utils--1.2.sql
|
|
PGFILEDESC = "neon_test_utils - helpers for neon testing and debugging"
|
|
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|