You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
}
cause queryId changed every request, so pg_stat_statements cannot agg by queryId, finally it's inflate. but we don't find any where that use queryId in pg_pathman.
We have to mark each Query with a unique
id in order to recognize them properly
so can you help to explain what is the purpose and which place use it?
The text was updated successfully, but these errors were encountered:
the following code
/*
*/
#define QUERY_ID_INITIAL 0
static uint64 latest_query_id = QUERY_ID_INITIAL;
void
assign_query_id(Query *query)
{
uint64 prev_id = latest_query_id++;
}
cause queryId changed every request, so pg_stat_statements cannot agg by queryId, finally it's inflate. but we don't find any where that use queryId in pg_pathman.
We have to mark each Query with a unique
so can you help to explain what is the purpose and which place use it?
The text was updated successfully, but these errors were encountered: