Project

General

Profile

« Previous | Next » 

Revision 12535

schemas/util.sql: removed no longer used raise_notice(). use util.raise(NOTICE, ...) instead.

View differences:

util.sql
2531 2531

  
2532 2532

  
2533 2533
--
2534
-- Name: raise_notice(text); Type: FUNCTION; Schema: util; Owner: -
2535
--
2536

  
2537
CREATE FUNCTION raise_notice(msg text) RETURNS void
2538
    LANGUAGE plpgsql IMMUTABLE STRICT
2539
    AS $$
2540
BEGIN
2541
	RAISE NOTICE '%', msg;
2542
END;
2543
$$;
2544

  
2545

  
2546
--
2547 2534
-- Name: raise_undefined_column(col_ref); Type: FUNCTION; Schema: util; Owner: -
2548 2535
--
2549 2536

  

Also available in: Unified diff