Merge pull request #141 from darkfronza/PG-234_fix_load_of_pgsm_and_pgss
PG-234: Fix loading both pg_stat_monitor and pg_stat_statements.pull/142/head
commit
a1e9526b51
|
@ -1046,7 +1046,8 @@ static void pgss_ProcessUtility(PlannedStmt *pstmt, const char *queryString,
|
||||||
context, params, queryEnv,
|
context, params, queryEnv,
|
||||||
dest,
|
dest,
|
||||||
qc);
|
qc);
|
||||||
standard_ProcessUtility(pstmt, queryString,
|
else
|
||||||
|
standard_ProcessUtility(pstmt, queryString,
|
||||||
readOnlyTree,
|
readOnlyTree,
|
||||||
context, params, queryEnv,
|
context, params, queryEnv,
|
||||||
dest,
|
dest,
|
||||||
|
@ -1057,7 +1058,8 @@ static void pgss_ProcessUtility(PlannedStmt *pstmt, const char *queryString,
|
||||||
context, params, queryEnv,
|
context, params, queryEnv,
|
||||||
dest,
|
dest,
|
||||||
qc);
|
qc);
|
||||||
standard_ProcessUtility(pstmt, queryString,
|
else
|
||||||
|
standard_ProcessUtility(pstmt, queryString,
|
||||||
context, params, queryEnv,
|
context, params, queryEnv,
|
||||||
dest,
|
dest,
|
||||||
qc);
|
qc);
|
||||||
|
@ -1067,7 +1069,8 @@ static void pgss_ProcessUtility(PlannedStmt *pstmt, const char *queryString,
|
||||||
context, params, queryEnv,
|
context, params, queryEnv,
|
||||||
dest,
|
dest,
|
||||||
completionTag);
|
completionTag);
|
||||||
standard_ProcessUtility(pstmt, queryString,
|
else
|
||||||
|
standard_ProcessUtility(pstmt, queryString,
|
||||||
context, params, queryEnv,
|
context, params, queryEnv,
|
||||||
dest,
|
dest,
|
||||||
completionTag);
|
completionTag);
|
||||||
|
|
Loading…
Reference in New Issue