We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c17144 commit 600250dCopy full SHA for 600250d
contrib/pg_upgrade/controldata.c
@@ -502,7 +502,8 @@ check_control_data(ControlData *oldctrl,
502
{
503
if (oldctrl->align == 0 || oldctrl->align != newctrl->align)
504
pg_log(PG_FATAL,
505
- "old and new pg_controldata alignments are invalid or do not match\n");
+ "old and new pg_controldata alignments are invalid or do not match\n"
506
+ "Likely one cluster is a 32-bit install, the other 64-bit\n");
507
508
if (oldctrl->blocksz == 0 || oldctrl->blocksz != newctrl->blocksz)
509
0 commit comments