You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/include/access/syncscan.h

25 lines
733 B

/*-------------------------------------------------------------------------
*
* syncscan.h
* POSTGRES synchronous scan support functions.
*
*
* Portions Copyright (c) 1996-2024, 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"
extern void ss_report_location(Relation rel, BlockNumber location);
extern BlockNumber ss_get_location(Relation rel, BlockNumber relnblocks);
extern void SyncScanShmemInit(void);
extern Size SyncScanShmemSize(void);
#endif