Project

General

Profile

« Previous | Next » 

Revision 4142

schemas/functions.sql: Added _eq()

View differences:

functions.sql
40 40

  
41 41

  
42 42
--
43
-- Name: _eq(anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: -
44
--
45

  
46
CREATE FUNCTION _eq("left" anyelement DEFAULT NULL::unknown, "right" anyelement DEFAULT NULL::unknown) RETURNS boolean
47
    LANGUAGE sql IMMUTABLE
48
    AS $_$
49
SELECT $1 = $2
50
$_$;
51

  
52

  
53
--
43 54
-- Name: _label(text, text); Type: FUNCTION; Schema: functions; Owner: -
44 55
--
45 56

  

Also available in: Unified diff