mirror of
https://github.com/HypoPG/hypopg
synced 2026-05-24 09:38:21 +00:00
Add pg 10 compatibility
WRT commit 18ce3a4ab22d2984f8540ab480979c851dae5338
This commit is contained in:
parent
e4a0d0b2bd
commit
c2bc7e03df
1 changed files with 12 additions and 0 deletions
12
hypopg.c
12
hypopg.c
|
|
@ -197,6 +197,9 @@ hypo_utility_hook(
|
|||
ProcessUtilityContext context,
|
||||
#endif
|
||||
ParamListInfo params,
|
||||
#if PG_VERSION_NUM >= 100000
|
||||
QueryEnvironment *queryEnv,
|
||||
#endif
|
||||
#if PG_VERSION_NUM < 90300
|
||||
bool isTopLevel,
|
||||
#endif
|
||||
|
|
@ -988,6 +991,9 @@ hypo_utility_hook(
|
|||
ProcessUtilityContext context,
|
||||
#endif
|
||||
ParamListInfo params,
|
||||
#if PG_VERSION_NUM >= 100000
|
||||
QueryEnvironment *queryEnv,
|
||||
#endif
|
||||
#if PG_VERSION_NUM < 90300
|
||||
bool isTopLevel,
|
||||
#endif
|
||||
|
|
@ -1015,6 +1021,9 @@ hypo_utility_hook(
|
|||
context,
|
||||
#endif
|
||||
params,
|
||||
#if PG_VERSION_NUM >= 100000
|
||||
queryEnv,
|
||||
#endif
|
||||
#if PG_VERSION_NUM < 90300
|
||||
isTopLevel,
|
||||
#endif
|
||||
|
|
@ -1031,6 +1040,9 @@ hypo_utility_hook(
|
|||
context,
|
||||
#endif
|
||||
params,
|
||||
#if PG_VERSION_NUM >= 100000
|
||||
queryEnv,
|
||||
#endif
|
||||
#if PG_VERSION_NUM < 90300
|
||||
isTopLevel,
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue