-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg_ensure_queryid.c
112 lines (94 loc) · 2.72 KB
/
pg_ensure_queryid.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include "postgres.h"
#include "tcop/utility.h"
#if PG_VERSION_NUM >= 160000
#include "utils/backend_status.h"
#include "nodes/queryjumble.h"
#elif PG_VERSION_NUM >= 140000
#include "utils/backend_status.h"
#include "utils/queryjumble.h"
#endif
#include "commands/explain.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <errno.h>
#include "pg_ensure_queryid.h"
PG_MODULE_MAGIC;
static ExecutorRun_hook_type prev_ExecutorRun = NULL;
static ProcessUtility_hook_type prev_ProcessUtility = NULL;
static bool use_query_id_tracking = true;
void _PG_init(void);
DECLARE_HOOK(void pgeq_ExecutorRun, QueryDesc *queryDesc, ScanDirection direction, uint64 count, bool execute_once);
DECLARE_HOOK(void pgeq_ProcessUtility, PlannedStmt *pstmt, const char *queryString,
bool readOnlyTree,
ProcessUtilityContext context,
ParamListInfo params, QueryEnvironment *queryEnv,
DestReceiver *dest,
QueryCompletion *qc);
void
_PG_init(void)
{
#if PG_VERSION_NUM >= 140000
prev_ExecutorRun = ExecutorRun_hook;
ExecutorRun_hook = HOOK(pgeq_ExecutorRun);
prev_ProcessUtility = ProcessUtility_hook;
ProcessUtility_hook = HOOK(pgeq_ProcessUtility);
EnableQueryId();
DefineCustomBoolVariable("pg_ensure_queryid.use_query_id_tracking",
"If the value of pg_stat_activity.query_id is 0, assign the query_id for the SQL currently being executed by the executor.",
NULL,
&use_query_id_tracking,
true,
PGC_SIGHUP,
0,
NULL,
NULL,
NULL);
#endif
}
static void
pgeq_ExecutorRun(QueryDesc *queryDesc, ScanDirection direction, uint64 count,
bool execute_once)
{
#if PG_VERSION_NUM >= 140000
if (use_query_id_tracking == true && queryDesc != NULL && queryDesc->plannedstmt != NULL)
pgstat_report_query_id(queryDesc->plannedstmt->queryId, false);
PG_TRY();
{
if (prev_ExecutorRun)
prev_ExecutorRun(queryDesc, direction, count, execute_once);
else
standard_ExecutorRun(queryDesc, direction, count, execute_once);
}
PG_CATCH();
{
PG_RE_THROW();
}
PG_END_TRY();
#endif
}
static void
pgeq_ProcessUtility(PlannedStmt *pstmt, const char *queryString,
bool readOnlyTree,
ProcessUtilityContext context,
ParamListInfo params, QueryEnvironment *queryEnv,
DestReceiver *dest, QueryCompletion *qc)
{
#if PG_VERSION_NUM >= 140000
if (use_query_id_tracking == true && pstmt != NULL)
pgstat_report_query_id(pstmt->queryId, false);
PG_TRY();
{
if (prev_ProcessUtility)
prev_ProcessUtility(pstmt, queryString, readOnlyTree, context, params, queryEnv, dest, qc);
else
standard_ProcessUtility(pstmt, queryString, readOnlyTree, context, params, queryEnv, dest, qc);
}
PG_CATCH();
{
PG_RE_THROW();
}
PG_END_TRY();
#endif
}