]> granicus.if.org Git - postgresql/blob - src/include/tcop/utility.h
Centralize definition of integer limits.
[postgresql] / src / include / tcop / utility.h
1 /*-------------------------------------------------------------------------
2  *
3  * utility.h
4  *        prototypes for utility.c.
5  *
6  *
7  * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * src/include/tcop/utility.h
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef UTILITY_H
15 #define UTILITY_H
16
17 #include "tcop/tcopprot.h"
18
19 typedef enum
20 {
21         PROCESS_UTILITY_TOPLEVEL,       /* toplevel interactive command */
22         PROCESS_UTILITY_QUERY,          /* a complete query, but not toplevel */
23         PROCESS_UTILITY_SUBCOMMAND      /* a portion of a query */
24 } ProcessUtilityContext;
25
26 /* Hook for plugins to get control in ProcessUtility() */
27 typedef void (*ProcessUtility_hook_type) (Node *parsetree,
28                                           const char *queryString, ProcessUtilityContext context,
29                                                                                                           ParamListInfo params,
30                                                                         DestReceiver *dest, char *completionTag);
31 extern PGDLLIMPORT ProcessUtility_hook_type ProcessUtility_hook;
32
33 extern void ProcessUtility(Node *parsetree, const char *queryString,
34                            ProcessUtilityContext context, ParamListInfo params,
35                            DestReceiver *dest, char *completionTag);
36 extern void standard_ProcessUtility(Node *parsetree, const char *queryString,
37                                                 ProcessUtilityContext context, ParamListInfo params,
38                                                 DestReceiver *dest, char *completionTag);
39
40 extern bool UtilityReturnsTuples(Node *parsetree);
41
42 extern TupleDesc UtilityTupleDescriptor(Node *parsetree);
43
44 extern Query *UtilityContainsQuery(Node *parsetree);
45
46 extern const char *CreateCommandTag(Node *parsetree);
47
48 extern LogStmtLevel GetCommandLogLevel(Node *parsetree);
49
50 extern bool CommandIsReadOnly(Node *parsetree);
51
52 #endif   /* UTILITY_H */