PostgreSQL has these monitoring tables, in particular pg_stat_statements
, that contians this column called queryId
and I was wondering how it is computed. If anybody knows where can I find the source code, that would be greatly appreciated.
So the pg_stat_statements
tables would show something like:
userid | dbid | queryid | query | other statistics related columns
1 | 2 | 123 | SELECT * FROM a; | ...
I am interested on how this 123
is being calculated.
This query ID is computed by the
pg_stat_statements
extension, seecontrib/pg_stat_statements/pg_stat_statements.c
This comment explains how it works: