Project

General

Profile

« Previous | Next » 

Revision 14456

schemas/util.sql: added expansion_min_cols() (the minimum # of cols from the same table to be treated as a * expression)

View differences:

util.sql
2864 2864

  
2865 2865

  
2866 2866
--
2867
-- Name: expansion_min_cols(); Type: FUNCTION; Schema: util; Owner: -
2868
--
2869

  
2870
CREATE FUNCTION expansion_min_cols() RETURNS integer
2871
    LANGUAGE sql IMMUTABLE
2872
    AS $$
2873
SELECT 6
2874
$$;
2875

  
2876

  
2877
--
2878
-- Name: FUNCTION expansion_min_cols(); Type: COMMENT; Schema: util; Owner: -
2879
--
2880

  
2881
COMMENT ON FUNCTION expansion_min_cols() IS '
2882
minimum # of cols from the same table to be treated as a * expression
2883
';
2884

  
2885

  
2886
--
2867 2887
-- Name: explain(text, boolean); Type: FUNCTION; Schema: util; Owner: -
2868 2888
--
2869 2889

  

Also available in: Unified diff