BUG: test_ginpostinglist second itemptr check is a no-op due to copy-paste error - Mailing list pgsql-hackers

From Jianghua Yang
Subject BUG: test_ginpostinglist second itemptr check is a no-op due to copy-paste error
Date
Msg-id CAAZLFmSOD8R7tZjRLZsmpKtJLoqjgawAaM-Pne1j8B_Q2aQK8w@mail.gmail.com
Whole thread
Responses Re: BUG: test_ginpostinglist second itemptr check is a no-op due to copy-paste error
List pgsql-hackers
 Hi,

  I found a copy-paste bug in src/test/modules/test_ginpostinglist/test_ginpostinglist.c.

  The function test_itemptr_pair() encodes a pair of item pointers and
  decodes them back to verify the round-trip. The two original item
  pointers are:

  orig_itemptrs[0] = (0, 1)
  orig_itemptrs[1] = (blk, off)

  After the first itemptr check (lines 68-72), there is a second check
  intended to verify the second decoded item pointer when ndecoded == 2:

  if (ndecoded == 2 &&
      !ItemPointerEquals(&orig_itemptrs[0], &decoded_itemptrs[0]))
  {
      elog(ERROR, "mismatch on second itemptr: (%u, %d) vs (%u, %d)",
           0, 1,
           ItemPointerGetBlockNumber(&decoded_itemptrs[0]),
           ItemPointerGetOffsetNumber(&decoded_itemptrs[0]));
  }

  This is an exact duplicate of the first check — it uses index [0]
  throughout, and the expected value is hardcoded as (0, 1) instead of
  (blk, off). As a result, any decoding error in decoded_itemptrs[1]
  would go undetected.

  This is particularly unfortunate because the whole purpose of testing a
  pair (as the comment at line 30-33 explains) is to exercise the varbyte
  delta encoding, which only applies to the second and subsequent item
  pointers. The broken check defeats exactly that goal.

  The attached patch fixes the second check to compare orig_itemptrs[1]
  with decoded_itemptrs[1] and reports (blk, off) as the expected
  value in the error message.

  Regards,
  Jianghua Yang
Attachment

pgsql-hackers by date:

Previous
From: Gyan Sreejith
Date:
Subject: Re: [Proposal] Adding Log File Capability to pg_createsubscriber
Next
From: Sami Imseih
Date:
Subject: Re: Proposal to allow setting cursor options on Portals