From 005b4d00f774d2abe924be4970569f5e8841f8a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Fri, 18 Oct 2019 20:41:45 +0000 Subject: [PATCH] Fix attributes on mark_aggregate_for_distributed_execution --- src/backend/distributed/sql/citus--9.0-1--9.0-customagg.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/distributed/sql/citus--9.0-1--9.0-customagg.sql b/src/backend/distributed/sql/citus--9.0-1--9.0-customagg.sql index ef4218cc4..cd4a35240 100644 --- a/src/backend/distributed/sql/citus--9.0-1--9.0-customagg.sql +++ b/src/backend/distributed/sql/citus--9.0-1--9.0-customagg.sql @@ -3,7 +3,7 @@ SET search_path = 'pg_catalog'; CREATE FUNCTION mark_aggregate_for_distributed_execution(regprocedure, strategy text) RETURNS void AS 'MODULE_PATHNAME' -LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE; +LANGUAGE C; SET search_path = 'citus';