1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-12 02:37:31 +03:00
Files
postgres/src/backend/access/nbtree/meson.build
Peter Geoghegan 65d6acbc56 Relocate _bt_readpage and related functions.
Quite a bit of code within nbtutils.c is only called by _bt_readpage.
Move _bt_readpage and all of the nbtutils.c functions it depends on into
a new .c file, nbtreadpage.c.  Also reorder some of the functions within
the new file for clarity.

This commit has no functional impact.  It is strictly mechanical.

Author: Peter Geoghegan <pg@bowt.ie>
Reviewed-By: Victor Yegorov <vyegorov@gmail.com>
Discussion: https://postgr.es/m/CAH2-WzmwMwcwKFgaf+mYPwiz3iL4AqpXnwtW_O0vqpWPXRom9Q@mail.gmail.com
2025-12-08 13:15:00 -05:00

18 lines
317 B
Meson

# Copyright (c) 2022-2025, PostgreSQL Global Development Group
backend_sources += files(
'nbtcompare.c',
'nbtdedup.c',
'nbtinsert.c',
'nbtpage.c',
'nbtpreprocesskeys.c',
'nbtreadpage.c',
'nbtree.c',
'nbtsearch.c',
'nbtsort.c',
'nbtsplitloc.c',
'nbtutils.c',
'nbtvalidate.c',
'nbtxlog.c',
)