Properties

Name: pg_stat_file 
Specific name: pg_stat_file(IN filename text, OUT size bigint, OUT access timestamp with time zone, OUT modification timestamp with time zone, OUT change timestamp with time zone, OUT creation timestamp with time zone, OUT isdir boolean) 
Owner: postgres 
Argument count:
Return type: record 
Language: internal 
Return a set:  
Source: pg_stat_file 
Volatility:  
Security of definer:  
Strict:  
Comment:  

SQL


CREATE FUNCTION pg_stat_file(filename text, OUT size bigint, OUT "access" timestamp with time zone, OUT modification timestamp with time zone, OUT change timestamp with time zone, OUT creation timestamp with time zone, OUT isdir boolean) RETURNS record
    AS $$pg_stat_file$$
    LANGUAGE internal STRICT;


ALTER FUNCTION public.pg_stat_file(filename text, OUT size bigint, OUT "access" timestamp with time zone, OUT modification timestamp with time zone, OUT change timestamp with time zone, OUT creation timestamp with time zone, OUT isdir boolean) OWNER TO postgres;

See Also

List of procedures