diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-08-17 13:04:19 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-08-17 13:04:19 +0000 |
commit | 82119a696e247e6d3f583c6bb89435099e062e71 (patch) | |
tree | de7bbf69ea65a1bd99769c77889f3ff7d6e25bf4 /src/backend/tcop/utility.c | |
parent | f0ed4311b6f44dac079ae720b370413e948f30d5 (diff) |
[ Newest version of patch applied.]
This patch is an updated version of the lock listing patch. I've made
the following changes:
- write documentation
- wrap the SRF in a view called 'pg_locks': all user-level
access should be done through this view
- re-diff against latest CVS
One thing I chose not to do is adapt the SRF to use the anonymous
composite type code from Joe Conway. I'll probably do that eventually,
but I'm not really convinced it's a significantly cleaner way to
bootstrap SRF builtins than the method this patch uses (of course, it
has other uses...)
Neil Conway
Diffstat (limited to 'src/backend/tcop/utility.c')
-rw-r--r-- | src/backend/tcop/utility.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index ded117dbac8..1ae0a89fd6b 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.171 2002/08/17 12:15:49 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.172 2002/08/17 13:04:15 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -239,8 +239,7 @@ ProcessUtility(Node *parsetree, break; /* - * ******************************** portal manipulation ******************************** - * + * ************************* portal manipulation *************************** */ case T_ClosePortalStmt: { |