blob: de9618761dd47336fc449c650179868dbceccb17 (
plain)
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
|
/*-------------------------------------------------------------------------
*
* extendplan.h
* Extend core planner objects with additional private state
*
*
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/optimizer/extendplan.h
*
*-------------------------------------------------------------------------
*/
#ifndef EXTENDPLAN_H
#define EXTENDPLAN_H
#include "nodes/pathnodes.h"
extern int GetPlannerExtensionId(const char *extension_name);
/*
* Get extension-specific state from a PlannerGlobal.
*/
static inline void *
GetPlannerGlobalExtensionState(PlannerGlobal *glob, int extension_id)
{
Assert(extension_id >= 0);
if (extension_id >= glob->extension_state_allocated)
return NULL;
return glob->extension_state[extension_id];
}
/*
* Get extension-specific state from a PlannerInfo.
*/
static inline void *
GetPlannerInfoExtensionState(PlannerInfo *root, int extension_id)
{
Assert(extension_id >= 0);
if (extension_id >= root->extension_state_allocated)
return NULL;
return root->extension_state[extension_id];
}
/*
* Get extension-specific state from a PlannerInfo.
*/
static inline void *
GetRelOptInfoExtensionState(RelOptInfo *rel, int extension_id)
{
Assert(extension_id >= 0);
if (extension_id >= rel->extension_state_allocated)
return NULL;
return rel->extension_state[extension_id];
}
/* Functions to store private state into various planner objects */
extern void SetPlannerGlobalExtensionState(PlannerGlobal *glob,
int extension_id,
void *opaque);
extern void SetPlannerInfoExtensionState(PlannerInfo *root, int extension_id,
void *opaque);
extern void SetRelOptInfoExtensionState(RelOptInfo *rel, int extension_id,
void *opaque);
#endif
|