mirror of
https://github.com/postgres/postgres.git
synced 2025-05-30 00:02:11 -04:00
This commit reverts 3c5db1d6b0, and subsequent improvements and fixes including 8036d73ae3, 867d396ccd, 3ac3ec580c, 0868d7ae70, 85b98b8d5a, 2520226c95, 014f9f34d2, e658038772, e1555645d7, 5035172e4a, 6cfebfe88b, 73da6b8d1b, and e546989a26. The reason for reverting is a set of remaining issues. Most notably, the stored procedure appears to need more effort than the utility statement to turn the backend into a "snapshot-less" state. This makes an approach to use stored procedures questionable. Catversion is bumped. Discussion: https://postgr.es/m/Zyhj2anOPRKtb0xW%40paquier.xyz
35 lines
615 B
Meson
35 lines
615 B
Meson
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
|
|
|
|
backend_sources += files(
|
|
'clog.c',
|
|
'commit_ts.c',
|
|
'generic_xlog.c',
|
|
'multixact.c',
|
|
'parallel.c',
|
|
'rmgr.c',
|
|
'slru.c',
|
|
'subtrans.c',
|
|
'timeline.c',
|
|
'transam.c',
|
|
'twophase.c',
|
|
'twophase_rmgr.c',
|
|
'varsup.c',
|
|
'xact.c',
|
|
'xlog.c',
|
|
'xlogarchive.c',
|
|
'xlogbackup.c',
|
|
'xlogfuncs.c',
|
|
'xloginsert.c',
|
|
'xlogprefetcher.c',
|
|
'xlogrecovery.c',
|
|
'xlogstats.c',
|
|
'xlogutils.c',
|
|
)
|
|
|
|
# used by frontend programs to build a frontend xlogreader
|
|
xlogreader_sources = files(
|
|
'xlogreader.c',
|
|
)
|
|
|
|
backend_sources += xlogreader_sources
|