aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-08-15 23:00:14 +0000
committerBruce Momjian <bruce@momjian.us>2005-08-15 23:00:14 +0000
commit070a3ad76b65c9eff572da5d358c563ccc7bb14f (patch)
treef0b35b4d14bb205483c453591ce60ba59e6800c9 /doc/src
parent24bd9447acb1f64fb357ed3cec5623da51d67cc2 (diff)
downloadpostgresql-070a3ad76b65c9eff572da5d358c563ccc7bb14f.tar.gz
postgresql-070a3ad76b65c9eff572da5d358c563ccc7bb14f.zip
Rename pg_stat_file columns to be more consistent. Split apart change
and creation columns to behave for Unix or Win32.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/func.sgml11
1 files changed, 6 insertions, 5 deletions
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 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.280 2005/08/13 19:02:32 tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.281 2005/08/15 23:00:13 momjian Exp $
PostgreSQL documentation
-->
@@ -9414,12 +9414,13 @@ SELECT set_config('log_statement_stats', 'off', false);
</indexterm>
<para>
<function>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:
<programlisting>
SELECT * FROM pg_stat_file('filename');
-SELECT (pg_stat_file('filename')).mtime;
+SELECT (pg_stat_file('filename')).modification;
</programlisting>
</para>