Schema
Owner
postgres
Descriptions
There is no description for function _raster_constraint_info_out_db
Options
Option | Value |
---|---|
Returns |
boolean [] |
Language |
sql |
Parameters |
rastschema name rasttable name rastcolumn name |
Definition
CREATE OR REPLACE FUNCTION public._raster_constraint_info_out_db (
rastschema name,
rasttable name,
rastcolumn name
)
RETURNS boolean [] AS
$span$
SELECT
trim(
both '''' from split_part(
regexp_replace(
split_part(s.consrc, ' = ', 2),
'[\(\)]', '', 'g'
),
'::', 1
)
)::boolean[]
FROM pg_class c, pg_namespace n, pg_attribute a, pg_constraint s
WHERE n.nspname = $1
AND c.relname = $2
AND a.attname = $3
AND a.attrelid = c.oid
AND s.connamespace = n.oid
AND s.conrelid = c.oid
AND a.attnum = ANY (s.conkey)
AND s.consrc LIKE '%_raster_constraint_out_db(%';
$span$
LANGUAGE 'sql'
STABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |