Schema
public
Owner
albenard
Descriptions
args: a_table_name, a_row_key, an_auth_token, expire_dt - Set lock/authorization for specific row in table
Options
Option | Value |
---|---|
Returns |
integer |
Language |
sql |
Parameters |
text text text timestamp |
Definition
CREATE OR REPLACE FUNCTION public.lockrow (
text,
text,
text,
timestamp
)
RETURNS integer AS
$span$
SELECT LockRow(current_schema(), $1, $2, $3, $4);
$span$
LANGUAGE 'sql'
VOLATILE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.lockrow(text, text, text, timestamp)
IS 'args: a_table_name, a_row_key, an_auth_token, expire_dt - Set lock/authorization for specific row in table';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |