From: Alvaro Herrera Date: Fri, 31 May 2019 14:08:37 +0000 (-0400) Subject: Fix double-phrase typo in message X-Git-Tag: REL_12_BETA2~93 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d22f885f895add7e0184b08a78ba92ff091e36c4;p=postgresql Fix double-phrase typo in message New in 147e3722f7e5. --- diff --git a/src/backend/access/table/tableam.c b/src/backend/access/table/tableam.c index 7d9fc6bb13..9842579c0b 100644 --- a/src/backend/access/table/tableam.c +++ b/src/backend/access/table/tableam.c @@ -233,7 +233,7 @@ table_tuple_get_latest_tid(TableScanDesc scan, ItemPointer tid) if (!tableam->tuple_tid_valid(scan, tid)) ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), - errmsg("tid (%u, %u) is not valid for relation for relation \"%s\"", + errmsg("tid (%u, %u) is not valid for relation \"%s\"", ItemPointerGetBlockNumberNoCheck(tid), ItemPointerGetOffsetNumberNoCheck(tid), RelationGetRelationName(rel))));