blob: c76f2c7916436365de142e42512ea2e9f33fcb0e (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- Test pg_prewarm extension
CREATE EXTENSION pg_prewarm;
-- pg_prewarm() should fail if the target relation has no storage.
CREATE TABLE test (c1 int) PARTITION BY RANGE (c1);
SELECT pg_prewarm('test', 'buffer');
-- Cleanup
DROP TABLE test;
DROP EXTENSION pg_prewarm;
|