summaryrefslogtreecommitdiff
path: root/src/include/tcop/utility.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-07-22 19:00:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-07-22 19:00:12 +0000
commitb05d3ae1edf557e174f80624219854767963dc66 (patch)
tree204def9d6f61d82a5816275df9384d209ad12d55 /src/include/tcop/utility.h
parent277dbb0c34791fe2f6192d02ea577d3738666c2f (diff)
downloadpostgresql-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.h4
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 */