Ensure mapalgebra test functions are dropped

git-svn-id: http://svn.osgeo.org/postgis/trunk@8552 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Sandro Santilli 2011-12-24 09:59:08 +00:00
parent 1aeba672f2
commit f729c9a9b3
5 changed files with 9 additions and 0 deletions

View file

@ -88,9 +88,11 @@ TEST_UTILITY = \
rt_mapalgebrafct.sql \
rt_mapalgebraexpr_2raster.sql \
rt_mapalgebrafct_2raster.sql \
drop_rt_mapalgebra_test.sql \
create_rt_mapalgebrafctngb_test.sql \
rt_mapalgebrafctngb.sql \
rt_mapalgebrafctngb_userfunc.sql \
drop_rt_mapalgebrafctngb_test.sql \
rt_reclass.sql \
rt_resample.sql \
rt_asraster.sql \

View file

@ -0,0 +1,5 @@
DROP FUNCTION ST_TestRaster(ulx float8, uly float8, val float8);
DROP FUNCTION raster_plus_twenty(pixel FLOAT, VARIADIC args TEXT[]);
DROP FUNCTION raster_plus_arg1(pixel FLOAT, VARIADIC args TEXT[]);
DROP FUNCTION raster_polynomial(pixel FLOAT, VARIADIC args TEXT[]);
DROP FUNCTION raster_nullage(pixel FLOAT, VARIADIC args TEXT[]);

View file

@ -0,0 +1,2 @@
DROP FUNCTION ST_Nullage(matrix float[][], nodatamode text, VARIADIC args text[]);
DROP FUNCTION ST_TestRasterNgb(h integer, w integer, val float8);