postgresql/contrib/miscutil/misc_utils.sql.in

55 lines
1.1 KiB
MySQL
Raw Normal View History

-- misc_utils.sql --
--
-- SQL code to define misc functions.
--
-- Copyright (c) 1998, Massimo Dal Zotto <dz@cs.unitn.it>
--
-- This file is distributed under the GNU General Public License
-- either version 2, or (at your option) any later version.
1997-11-05 22:38:25 +01:00
-- Return the pid of the backend.
1997-11-05 22:38:25 +01:00
--
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION backend_pid()
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE 'C';
1997-11-05 22:38:25 +01:00
-- Unlisten from a relation.
1997-11-05 22:38:25 +01:00
--
CREATE OR REPLACE FUNCTION "unlisten"(name)
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE 'C';
1997-11-05 22:38:25 +01:00
-- Unlisten from all relations for this backend.
1997-11-05 22:38:25 +01:00
--
CREATE OR REPLACE FUNCTION "unlisten"()
RETURNS int4
AS 'SELECT "unlisten"(''*'')'
LANGUAGE 'SQL';
-- min(x,y)
--
CREATE OR REPLACE FUNCTION min(int4,int4)
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE 'C';
1997-11-05 22:38:25 +01:00
-- max(x,y)
1997-11-05 22:38:25 +01:00
--
CREATE OR REPLACE FUNCTION max(int4,int4)
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE 'C';
1997-11-05 22:38:25 +01:00
-- Return the number of active listeners on a relation
--
CREATE OR REPLACE FUNCTION active_listeners(text)
RETURNS int4
AS 'MODULE_PATHNAME'
LANGUAGE 'C';