mirror of https://github.com/postgres/postgres
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.
15 lines
461 B
15 lines
461 B
|
12 years ago
|
/* contrib/pg_prewarm/pg_prewarm--1.0.sql */
|
||
|
|
|
||
|
|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
|
||
|
|
\echo Use "CREATE EXTENSION pg_prewarm" to load this file. \quit
|
||
|
|
|
||
|
|
-- Register the function.
|
||
|
|
CREATE FUNCTION pg_prewarm(regclass,
|
||
|
|
mode text default 'buffer',
|
||
|
|
fork text default 'main',
|
||
|
|
first_block int8 default null,
|
||
|
|
last_block int8 default null)
|
||
|
|
RETURNS int8
|
||
|
|
AS 'MODULE_PATHNAME', 'pg_prewarm'
|
||
|
|
LANGUAGE C;
|