Change internal plan ID type from uint64 to int64 uint64 was chosen to be consistent with the type used by the query ID, but the conclusion of a recent discussion for the query ID is that int64 is a better fit as the signed form is shown to the user, for PGSS or EXPLAIN outputs.
This commit changes the plan ID to use int64, following c3eda50b0648 that has done the same for the query ID. The plan ID is new to v18, introduced in 2a0cd38da5cc. Author: Michael Paquier <mich...@paquier.xyz> Reviewed-by: Sami Imseih <samims...@gmail.com> Discussion: https://postgr.es/m/acvzjnwetyei3...@paquier.xyz Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/e050af28686e796bdf22cb53fe3fdf1c6655f315 Modified Files -------------- src/backend/tcop/postgres.c | 4 ++-- src/backend/utils/activity/backend_status.c | 10 +++++----- src/include/nodes/plannodes.h | 2 +- src/include/utils/backend_status.h | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-)