Schema
Owner
postgres
Descriptions
args: rasttable, rastcolumn, VARIADIC constraints - Adds raster constraints to a loaded raster table for a specific column that constrains spatial ref, scaling, blocksize, alignment, bands, band type and a flag to denote if raster column is regularly blocked. The table must be loaded with data for the constraints to be inferred. Returns true of the constraint setting was accomplished and if issues a notice.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
rasttable name rastcolumn name variadic constraints text [] |
Definition
CREATE OR REPLACE FUNCTION public.addrasterconstraints (
rasttable name,
rastcolumn name,
variadic constraints text []
)
RETURNS boolean AS
$span$
SELECT public.AddRasterConstraints('', $1, $2, VARIADIC $3)
$span$
LANGUAGE 'sql'
VOLATILE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.addrasterconstraints(rasttable name, rastcolumn name, variadic constraints text [])
IS 'args: rasttable, rastcolumn, VARIADIC constraints - Adds raster constraints to a loaded raster table for a specific column that constrains spatial ref, scaling, blocksize, alignment, bands, band type and a flag to denote if raster column is regularly blocked. The table must be loaded with data for the constraints to be inferred. Returns true of the constraint setting was accomplished and if issues a notice.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |