You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some WAL operations perform some logic rather than just rewriting a page. This can be replayed differently on the replica and are harder to parse in the WAL for effects. Eliminate them if possible.
The text was updated successfully, but these errors were encountered:
Test #12 overwrote a 1-byte varlena header to make it look like the
initial byte of a 4-byte varlena header, but the results were
endian-dependent. Also, the byte "abc" that followed the overwritten
byte would be interpreted differently depending on endian-ness.
Overwrite 4 bytes instead, in an endian-aware manner.
Test #13 accidentally managed to depend on TOAST_MAX_CHUNK_SIZE,
which varies slightly depending on MAXIMUM_ALIGNOF. That's not
the point anyway, so make the regexp insensitive to the expected
number of chunks.
Mark Dilger
Discussion: http://postgr.es/m/[email protected]
Some WAL operations perform some logic rather than just rewriting a page. This can be replayed differently on the replica and are harder to parse in the WAL for effects. Eliminate them if possible.
The text was updated successfully, but these errors were encountered: