mirror of https://github.com/citusdata/citus.git
14 lines
612 B
SQL
14 lines
612 B
SQL
/* citus--7.2-2--7.2-3 */
|
|
|
|
DROP FUNCTION pg_catalog.read_intermediate_result(text,citus.copy_format);
|
|
DROP TYPE citus.copy_format;
|
|
|
|
CREATE TYPE pg_catalog.citus_copy_format AS ENUM ('csv', 'binary', 'text');
|
|
|
|
CREATE OR REPLACE FUNCTION pg_catalog.read_intermediate_result(result_id text, format pg_catalog.citus_copy_format default 'csv')
|
|
RETURNS SETOF record
|
|
LANGUAGE C STRICT VOLATILE PARALLEL SAFE
|
|
AS 'MODULE_PATHNAME', $$read_intermediate_result$$;
|
|
COMMENT ON FUNCTION pg_catalog.read_intermediate_result(text,pg_catalog.citus_copy_format)
|
|
IS 'read a file and return it as a set of records';
|