Skip to content

Commit

Permalink
PostgreSQl: fix offset
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Safonov committed Aug 3, 2022
1 parent d8b891c commit fdb3b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format/postgres/flavours/postgres14/common14/pgheap.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func decodeTuples(d *decode.D) {

pos1 := d.Pos()
// we need infomask before t_xmin, t_xmax
d.SeekAbs(pos1 + 48)
d.SeekAbs(pos1 + 18*8)
d.FieldU16("t_infomask2")
d.FieldStruct("Infomask2", decodeInfomask2)
d.FieldU16("t_infomask")
Expand Down

0 comments on commit fdb3b3e

Please sign in to comment.