|
1 |
| -<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.434 2008/04/28 14:48:57 alvherre Exp $ --> |
| 1 | +<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.435 2008/05/04 21:13:35 tgl Exp $ --> |
2 | 2 |
|
3 | 3 | <chapter id="functions">
|
4 | 4 | <title>Functions and Operators</title>
|
@@ -10891,6 +10891,12 @@ postgres=# select * from unnest2(array[[1,2],[3,4]]);
|
10891 | 10891 | <entry>server start time</entry>
|
10892 | 10892 | </row>
|
10893 | 10893 |
|
| 10894 | + <row> |
| 10895 | + <entry><literal><function>pg_conf_load_time</function>()</literal></entry> |
| 10896 | + <entry><type>timestamp with time zone</type></entry> |
| 10897 | + <entry>configuration load time</entry> |
| 10898 | + </row> |
| 10899 | + |
10894 | 10900 | <row>
|
10895 | 10901 | <entry><literal><function>session_user</function></literal></entry>
|
10896 | 10902 | <entry><type>name</type></entry>
|
@@ -11031,9 +11037,23 @@ SET search_path TO <replaceable>schema</> <optional>, <replaceable>schema</>, ..
|
11031 | 11037 | </indexterm>
|
11032 | 11038 |
|
11033 | 11039 | <para>
|
11034 |
| - <function>pg_postmaster_start_time</function> returns the |
11035 |
| - <type>timestamp with time zone</type> when the |
11036 |
| - server started. |
| 11040 | + <function>pg_postmaster_start_time</function> returns the |
| 11041 | + <type>timestamp with time zone</type> when the |
| 11042 | + server started. |
| 11043 | + </para> |
| 11044 | + |
| 11045 | + <indexterm> |
| 11046 | + <primary>pg_conf_load_time</primary> |
| 11047 | + </indexterm> |
| 11048 | + |
| 11049 | + <para> |
| 11050 | + <function>pg_conf_load_time</function> returns the |
| 11051 | + <type>timestamp with time zone</type> when the |
| 11052 | + server configuration files were last loaded. |
| 11053 | + (If the current session was alive at the time, this will be the time |
| 11054 | + when the session itself re-read the configuration files, so the |
| 11055 | + reading will vary a little in different sessions. Otherwise it is |
| 11056 | + the time when the postmaster process re-read the configuration files.) |
11037 | 11057 | </para>
|
11038 | 11058 |
|
11039 | 11059 | <indexterm>
|
|
0 commit comments