Project

General

Profile

« Previous | Next » 

Revision 12266

schemas/util.sql: type_qual_name(type regtype): renamed to qual_name(type regtype) to match qual_name(table_ regclass)

View differences:

trunk/schemas/util.sql
1970 1970
CREATE FUNCTION qual_name(table_ regclass) RETURNS text
1971 1971
    LANGUAGE sql STABLE
1972 1972
    AS $_$
1973
SELECT util.type_qual_name($1::text::regtype)
1973
SELECT util.qual_name($1::text::regtype)
1974 1974
$_$;
1975 1975

  
1976 1976

  
......
2697 2697

  
2698 2698

  
2699 2699
--
2700
-- Name: type_qual_name(regtype); Type: FUNCTION; Schema: util; Owner: -
2700
-- Name: qual_name(regtype); Type: FUNCTION; Schema: util; Owner: -
2701 2701
--
2702 2702

  
2703
CREATE FUNCTION type_qual_name(type regtype) RETURNS text
2703
CREATE FUNCTION qual_name(type regtype) RETURNS text
2704 2704
    LANGUAGE sql STABLE STRICT
2705 2705
    SET search_path TO pg_temp
2706 2706
    AS $_$
......
2709 2709

  
2710 2710

  
2711 2711
--
2712
-- Name: FUNCTION type_qual_name(type regtype); Type: COMMENT; Schema: util; Owner: -
2712
-- Name: FUNCTION qual_name(type regtype); Type: COMMENT; Schema: util; Owner: -
2713 2713
--
2714 2714

  
2715
COMMENT ON FUNCTION type_qual_name(type regtype) IS '
2715
COMMENT ON FUNCTION qual_name(type regtype) IS '
2716 2716
a type''s schema-qualified name
2717 2717
';
2718 2718

  

Also available in: Unified diff