
[postgres@test_dan bulk_test]$ psql -U postgres -d testdb -f /opt/pgbinary/pgsql/share/postgresql/extension/pg_bulkload.sql
BEGIN
CREATE SCHEMA
psql.bin:/opt/pgbinary/pgsql/share/postgresql/extension/pg_bulkload.sql:23: ERROR: could not access file "$libdir/pg_bulkload": 没有那个文件或目录
ROLLBACK
请问这个错误如何处理?
[root@test_dan lib]# more /opt/pgbinary/pgsql/share/postgresql/extension/pg_bulkload.sql
/*
* pg_bulkload.sql
*
* Copyright (c) 2007-2020, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
*/
-- Adjust this setting to control where the objects get created.
BEGIN;
CREATE SCHEMA pgbulkload;
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 '$libdir/pg_bulkload', 'pg_bulkload' LANGUAGE C VOLATILE STRICT;
COMMIT;