projects
/
postgis
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3b7d0b
)
Make _ST_Intersects(raster, raster) STRICT as per comments in #1412.
author
Bborie Park
<bkpark at ucdavis.edu>
Mon, 9 Jan 2012 15:01:24 +0000
(15:01 +0000)
committer
Bborie Park
<bkpark at ucdavis.edu>
Mon, 9 Jan 2012 15:01:24 +0000
(15:01 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8714
b70326c6
-7e19-0410-871a-
916f4a2858ee
raster/rt_pg/rtpostgis.sql.in.c
patch
|
blob
|
history
diff --git
a/raster/rt_pg/rtpostgis.sql.in.c
b/raster/rt_pg/rtpostgis.sql.in.c
index 68a78f98cb75bf9037c4a6d744e3f5fe76b3571b..7ff10a57fcfc8df3f0eb12453823ec544fe904ba 100644
(file)
--- a/
raster/rt_pg/rtpostgis.sql.in.c
+++ b/
raster/rt_pg/rtpostgis.sql.in.c
@@
-2965,7
+2965,7
@@
CREATE OR REPLACE FUNCTION st_samealignment(
CREATE OR REPLACE FUNCTION _st_intersects(rast1 raster, nband1 integer, rast2 raster, nband2 integer)
RETURNS boolean
AS 'MODULE_PATHNAME', 'RASTER_intersects'
- LANGUAGE 'C' IMMUTABLE
+ LANGUAGE 'C' IMMUTABLE
STRICT
COST 1000;
CREATE OR REPLACE FUNCTION st_intersects(rast1 raster, nband1 integer, rast2 raster, nband2 integer)