From 070a3ad76b65c9eff572da5d358c563ccc7bb14f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 15 Aug 2005 23:00:14 +0000 Subject: Rename pg_stat_file columns to be more consistent. Split apart change and creation columns to behave for Unix or Win32. --- doc/src/sgml/func.sgml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index d9495e8ee48..c5c81a028ff 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ @@ -9414,12 +9414,13 @@ SELECT set_config('log_statement_stats', 'off', false); pg_stat_file() returns a record containing the file - length, last accessed timestamp, last modified timestamp, - creation timestamp, and a boolean indicating if it is a directory. - Typical usages include: + size, last accessed timestamp, last modified timestamp, + last file status change timestamp (Unix platforms only), + file creation timestamp (Win32 only), and a boolean indicating + if it is a directory. Typical usages include: SELECT * FROM pg_stat_file('filename'); -SELECT (pg_stat_file('filename')).mtime; +SELECT (pg_stat_file('filename')).modification; -- cgit v1.2.3