66 int64 blocks_done = 0;
78 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
79 errmsg(
"relation cannot be null")));
83 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
84 errmsg(
"prewarm type cannot be null")));
87 if (strcmp(ttype,
"prefetch") == 0)
89 else if (strcmp(ttype,
"read") == 0)
91 else if (strcmp(ttype,
"buffer") == 0)
96 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
97 errmsg(
"invalid prewarm type"),
98 errhint(
"Valid prewarm types are \"prefetch\", \"read\", and \"buffer\".")));
103 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
104 errmsg(
"relation fork cannot be null")));
118 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
119 errmsg(
"fork \"%s\" does not exist for this relation",
129 if (first_block < 0 || first_block >= nblocks)
131 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
132 errmsg(
"starting block number must be between 0 and %" PRId64,
136 last_block = nblocks - 1;
140 if (last_block < 0 || last_block >= nblocks)
142 (
errcode(ERRCODE_INVALID_PARAMETER_VALUE),
143 errmsg(
"ending block number must be between 0 and %" PRId64,
162 for (block = first_block; block <= last_block; ++block)
170 (
errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
171 errmsg(
"prefetch is not supported by this build")));
181 for (block = first_block; block <= last_block; ++block)
214 for (block = first_block; block <= last_block; ++block)
void aclcheck_error(AclResult aclerr, ObjectType objtype, const char *objectname)
AclResult pg_class_aclcheck(Oid table_oid, Oid roleid, AclMode mode)
PrefetchBufferResult PrefetchBuffer(Relation reln, ForkNumber forkNum, BlockNumber blockNum)
BlockNumber RelationGetNumberOfBlocksInFork(Relation relation, ForkNumber forkNum)
void ReleaseBuffer(Buffer buffer)
int errhint(const char *fmt,...)
int errcode(int sqlerrcode)
int errmsg(const char *fmt,...)
#define ereport(elevel,...)
#define PG_GETARG_TEXT_PP(n)
#define PG_RETURN_INT64(x)
#define PG_GETARG_INT64(n)
Assert(PointerIsAligned(start, uint64))
char * get_rel_name(Oid relid)
#define CHECK_FOR_INTERRUPTS()
ObjectType get_relkind_objtype(char relkind)
PG_FUNCTION_INFO_V1(pg_prewarm)
PG_MODULE_MAGIC_EXT(.name="pg_prewarm",.version=PG_VERSION)
static PGIOAlignedBlock blockbuffer
Datum pg_prewarm(PG_FUNCTION_ARGS)
Buffer read_stream_next_buffer(ReadStream *stream, void **per_buffer_data)
ReadStream * read_stream_begin_relation(int flags, BufferAccessStrategy strategy, Relation rel, ForkNumber forknum, ReadStreamBlockNumberCB callback, void *callback_private_data, size_t per_buffer_data_size)
void read_stream_end(ReadStream *stream)
BlockNumber block_range_read_stream_cb(ReadStream *stream, void *callback_private_data, void *per_buffer_data)
#define READ_STREAM_USE_BATCHING
static SMgrRelation RelationGetSmgr(Relation rel)
ForkNumber forkname_to_number(const char *forkName)
bool smgrexists(SMgrRelation reln, ForkNumber forknum)
static void smgrread(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum, void *buffer)
void relation_close(Relation relation, LOCKMODE lockmode)
Relation relation_open(Oid relationId, LOCKMODE lockmode)
BlockNumber last_exclusive
BlockNumber current_blocknum
char * text_to_cstring(const text *t)