diff options
Diffstat (limited to 'src/include/tcop/utility.h')
-rw-r--r-- | src/include/tcop/utility.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/include/tcop/utility.h b/src/include/tcop/utility.h index ebcaf597729..52c02253068 100644 --- a/src/include/tcop/utility.h +++ b/src/include/tcop/utility.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/tcop/utility.h,v 1.30 2007/01/05 22:19:58 momjian Exp $ + * $PostgreSQL: pgsql/src/include/tcop/utility.h,v 1.31 2007/02/20 17:32:17 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -26,15 +26,9 @@ extern TupleDesc UtilityTupleDescriptor(Node *parsetree); extern const char *CreateCommandTag(Node *parsetree); -extern const char *CreateQueryTag(Query *parsetree); - extern LogStmtLevel GetCommandLogLevel(Node *parsetree); -extern LogStmtLevel GetQueryLogLevel(Query *parsetree); - -extern bool QueryReturnsTuples(Query *parsetree); - -extern bool QueryIsReadOnly(Query *parsetree); +extern bool CommandIsReadOnly(Node *parsetree); extern void CheckRelationOwnership(RangeVar *rel, bool noCatalogs); |