/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/access/syncscan.h
28 строк
749 B
Heikki Linnakangas
Convert all remaining subsystems to use the new shmem allocation API
06 апр 2026, 02:13
06 апр 2026, 02:13
9b5acad
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * syncscan.h * POSTGRES synchronous scan support functions. * * * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/access/syncscan.h * *------------------------------------------------------------------------- */ #ifndef SYNCSCAN_H #define SYNCSCAN_H #include "storage/block.h" #include "utils/relcache.h" /* GUC variables */ #ifdef TRACE_SYNCSCAN extern PGDLLIMPORT bool trace_syncscan; #endif extern void ss_report_location(Relation rel, BlockNumber location); extern BlockNumber ss_get_location(Relation rel, BlockNumber relnblocks); #endif