mirror of
https://github.com/postgres/postgres.git
synced 2025-07-09 22:41:56 +03:00
Fix incorrect field type for PlannedStmt.jitFlags in outfuncs/readfuncs.
This field was a bool at one point, but now it's an int. Spotted by Hari Babu; trivial patch is by Ashutosh Bapat. Discussion: https://postgr.es/m/CAJrrPGedKiFE2fqntSauUfhapCksOJzam+QtHfSgx86LhXLeOQ@mail.gmail.com
This commit is contained in:
@ -1518,7 +1518,7 @@ _readPlannedStmt(void)
|
||||
READ_BOOL_FIELD(transientPlan);
|
||||
READ_BOOL_FIELD(dependsOnRole);
|
||||
READ_BOOL_FIELD(parallelModeNeeded);
|
||||
READ_BOOL_FIELD(jitFlags);
|
||||
READ_INT_FIELD(jitFlags);
|
||||
READ_NODE_FIELD(planTree);
|
||||
READ_NODE_FIELD(rtable);
|
||||
READ_NODE_FIELD(resultRelations);
|
||||
|
Reference in New Issue
Block a user