Schema
Owner
postgres
Descriptions
args: a_table_name, a_key_column_name - Creates trigger on a table to prevent/allow updates and deletes of rows based on authorization token.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
sql |
Parameters |
text text |
Definition
CREATE OR REPLACE FUNCTION public.checkauth (
text,
text
)
RETURNS integer AS
$span$
SELECT CheckAuth('', $1, $2)
$span$
LANGUAGE 'sql'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.checkauth(text, text)
IS 'args: a_table_name, a_key_column_name - Creates trigger on a table to prevent/allow updates and deletes of rows based on authorization token.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |