/* * pg_bulkload--BULKLOAD_VERSION.sql * * Copyright (c) 2007-2025, NIPPON TELEGRAPH AND TELEPHONE CORPORATION */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION pg_bulkload" to load this file. \quit CREATE SCHEMA pgbulkload; -- Adjust this setting to control where the objects get created. CREATE FUNCTION pgbulkload.pg_bulkload( IN options text[], OUT skip bigint, OUT count bigint, OUT parse_errors bigint, OUT duplicate_new bigint, OUT duplicate_old bigint, OUT system_time float8, OUT user_time float8, OUT duration float8 ) AS 'MODULE_PATHNAME', 'pg_bulkload' LANGUAGE C VOLATILE STRICT;