diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-22 19:00:12 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-22 19:00:12 +0000 |
| commit | b05d3ae1edf557e174f80624219854767963dc66 (patch) | |
| tree | 204def9d6f61d82a5816275df9384d209ad12d55 /src/include/tcop/utility.h | |
| parent | 277dbb0c34791fe2f6192d02ea577d3738666c2f (diff) | |
| download | postgresql-b05d3ae1edf557e174f80624219854767963dc66.tar.gz | |
Error message editing in backend/libpq, backend/postmaster, backend/tcop.
Along the way, fix some logic problems in pgstat_initstats, notably the
bogus assumption that malloc returns zeroed memory.
Diffstat (limited to 'src/include/tcop/utility.h')
| -rw-r--r-- | src/include/tcop/utility.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/tcop/utility.h b/src/include/tcop/utility.h index 38edd4346a..54098395e3 100644 --- a/src/include/tcop/utility.h +++ b/src/include/tcop/utility.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: utility.h,v 1.18 2003/05/06 20:26:28 tgl Exp $ + * $Id: utility.h,v 1.19 2003/07/22 19:00:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -25,4 +25,6 @@ extern TupleDesc UtilityTupleDescriptor(Node *parsetree); extern const char *CreateCommandTag(Node *parsetree); +extern void CheckRelationOwnership(RangeVar *rel, bool noCatalogs); + #endif /* UTILITY_H */ |
