summaryrefslogtreecommitdiffstats
path: root/gis/pointcloud/postgresql9.5.patch
diff options
context:
space:
mode:
author Benjamin Trigona-Harany <bosth@alumni.sfu.ca>2018-06-10 08:19:54 -0700
committer David Spencer <idlemoor@slackbuilds.org>2018-06-14 01:15:14 +0100
commit578baaffa1143b0de33a118f382811848fdd711c (patch)
tree65cb3d0b927638ad0bf3ff7f5d9e2a5c58bcbe2c /gis/pointcloud/postgresql9.5.patch
parent43a9f23ea8f556053c2fd2a53c9f00b4b82f05d4 (diff)
downloadslackbuilds-578baaffa1143b0de33a118f382811848fdd711c.tar.gz
slackbuilds-578baaffa1143b0de33a118f382811848fdd711c.tar.xz
gis/pointcloud: Updated for version 1.1.0.
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to '')
-rw-r--r--gis/pointcloud/postgresql9.5.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/gis/pointcloud/postgresql9.5.patch b/gis/pointcloud/postgresql9.5.patch
deleted file mode 100644
index a1c21765a7..0000000000
--- a/gis/pointcloud/postgresql9.5.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- pointcloud-1.0.1/pgsql/pc_access.c.orig 2016-02-07 08:01:10.553181345 +0700
-+++ pointcloud-1.0.1/pgsql/pc_access.c 2016-02-07 08:01:39.528225276 +0700
-@@ -313,15 +313,7 @@
- (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("could not determine input data type")));
-
-- if (fcinfo->context && IsA(fcinfo->context, AggState))
-- {
-- aggcontext = ((AggState *) fcinfo->context)->aggcontext;
-- }
-- else if (fcinfo->context && IsA(fcinfo->context, WindowAggState))
-- {
-- aggcontext = ((WindowAggState *) fcinfo->context)->aggcontext;
-- }
-- else
-+ if ( ! AggCheckCallContext(fcinfo, &aggcontext) )
- {
- /* cannot be called directly because of dummy-type argument */
- elog(ERROR, "pointcloud_agg_transfn called in non-aggregate context");