1/* src/test/modules/worker_spi/worker_spi--1.0.sql */
2
3-- complain if script is sourced in psql, rather than via CREATE EXTENSION
4\echo Use "CREATE EXTENSION worker_spi" to load this file. \quit
5
6CREATE FUNCTION worker_spi_launch(pg_catalog.int4)
7RETURNS pg_catalog.int4 STRICT
8AS 'MODULE_PATHNAME'
9LANGUAGE C;
10