File tree Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Expand file tree Collapse file tree 3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.106 2002/08/04 03:53:10 momjian Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.107 2002/08/04 19:51:30 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -4353,11 +4353,6 @@ SELECT NULLIF(value, '(none)') ...
4353
4353
<entry><type>name[]</type></entry>
4354
4354
<entry>names of schemas in search path optionally including implicit schemas</entry>
4355
4355
</row>
4356
- <row>
4357
- <entry><function>backend_pid</function>()</entry>
4358
- <entry><type>integer</type></entry>
4359
- <entry>process ID of the session backend</entry>
4360
- </row>
4361
4356
</tbody>
4362
4357
</tgroup>
4363
4358
</table>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/monitoring.sgml,v 1.9 2002/07/31 02:27:29 momjian Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/monitoring.sgml,v 1.10 2002/08/04 19:51:30 momjian Exp $
3
3
-->
4
4
5
5
<chapter id="monitoring">
@@ -480,6 +480,14 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
480
480
</entry>
481
481
</row>
482
482
483
+ <row>
484
+ <entry><function>pg_backend_pid</function>()</entry>
485
+ <entry><type>integer</type></entry>
486
+ <entry>
487
+ Process ID of the attached backend
488
+ </entry>
489
+ </row>
490
+
483
491
<row>
484
492
<entry><function>pg_stat_get_backend_pid</function>(<type>integer</type>)</entry>
485
493
<entry><type>integer</type></entry>
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ extern Datum pg_stat_get_blocks_fetched(PG_FUNCTION_ARGS);
19
19
extern Datum pg_stat_get_blocks_hit (PG_FUNCTION_ARGS );
20
20
21
21
extern Datum pg_stat_get_backend_idset (PG_FUNCTION_ARGS );
22
- extern Datum backend_pid (PG_FUNCTION_ARGS );
22
+ extern Datum pg_backend_pid (PG_FUNCTION_ARGS );
23
23
extern Datum pg_stat_get_backend_pid (PG_FUNCTION_ARGS );
24
24
extern Datum pg_stat_get_backend_dbid (PG_FUNCTION_ARGS );
25
25
extern Datum pg_stat_get_backend_userid (PG_FUNCTION_ARGS );
@@ -213,7 +213,7 @@ pg_stat_get_backend_idset(PG_FUNCTION_ARGS)
213
213
214
214
215
215
Datum
216
- backend_pid (PG_FUNCTION_ARGS )
216
+ pg_backend_pid (PG_FUNCTION_ARGS )
217
217
{
218
218
PG_RETURN_INT32 (MyProcPid );
219
219
}
You can’t perform that action at this time.
0 commit comments