Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / access / syncscan.h
blob7947f3c3f6cf5f19a2cd6b2c7bf5716174b0dbe6
1 /*-------------------------------------------------------------------------
3 * syncscan.h
4 * POSTGRES synchronous scan support functions.
7 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/access/syncscan.h
12 *-------------------------------------------------------------------------
14 #ifndef SYNCSCAN_H
15 #define SYNCSCAN_H
17 #include "storage/block.h"
18 #include "utils/relcache.h"
20 extern void ss_report_location(Relation rel, BlockNumber location);
21 extern BlockNumber ss_get_location(Relation rel, BlockNumber relnblocks);
22 extern void SyncScanShmemInit(void);
23 extern Size SyncScanShmemSize(void);
25 #endif