CheckPoint *checkpoint = (CheckPoint *) rec;
appendStringInfo(buf, "redo %X/%X; "
- "tli %u; prev tli %u; fpw %s; xid %u:%u; relfilenumber " UINT64_FORMAT ";oid %u; "
+ "tli %u; prev tli %u; fpw %s; xid %u:%u; relfilenumber " UINT64_FORMAT "; oid %u; "
"multi %u; offset %u; oldest xid %u in DB %u; oldest multi %u in DB %u; "
"oldest/newest commit timestamp xid: %u/%u; "
"oldest running xid %u; %s",
* (This is less efficient than GetNewRelFileNumber, which arranges to
* log some new relfilenumbers before the old batch is exhausted in the
* hope that a flush will happen in the background before any values are
- * needed from the new batch. However, since thais is only used during
+ * needed from the new batch. However, since this is only used during
* binary upgrade, it shouldn't really matter.)
*/
if (relnumber >= ShmemVariableCache->flushedRelFileNumber)
SMgrRelation reln;
if (xlrec->rlocator.relNumber > ShmemVariableCache->nextRelFileNumber)
- elog(ERROR, "unexpected relnumber " UINT64_FORMAT " that is bigger than nextRelFileNumber " UINT64_FORMAT,
+ elog(ERROR, "unexpected relnumber " UINT64_FORMAT " is bigger than nextRelFileNumber " UINT64_FORMAT,
xlrec->rlocator.relNumber, ShmemVariableCache->nextRelFileNumber);
reln = smgropen(xlrec->rlocator, InvalidBackendId);
bool need_fsm_vacuum = false;
if (xlrec->rlocator.relNumber > ShmemVariableCache->nextRelFileNumber)
- elog(ERROR, "unexpected relnumber " UINT64_FORMAT "that is bigger than nextRelFileNumber " UINT64_FORMAT,
+ elog(ERROR, "unexpected relnumber " UINT64_FORMAT " is bigger than nextRelFileNumber " UINT64_FORMAT,
xlrec->rlocator.relNumber, ShmemVariableCache->nextRelFileNumber);
reln = smgropen(xlrec->rlocator, InvalidBackendId);
* option_parse_relfilenumber
*
* Parse relfilenumber value for an option. If the parsing is successful,
- * returns; if parsing fails, returns false.
+ * returns true; if parsing fails, returns false.
*/
bool
option_parse_relfilenumber(const char *optarg, const char *optname)