1
1
mirror of https://github.com/wader/fq.git synced 2024-12-01 19:12:34 +03:00

postgres: refactor ItemIdData

This commit is contained in:
Pavel Safonov 2022-11-07 13:35:23 +03:00
parent 5bb8654423
commit 5664c0a498
35 changed files with 642 additions and 504 deletions

View File

@ -19,22 +19,10 @@ func TransactionIDIsNormal(xid uint64) bool {
return xid >= FirstNormalTransactionID
}
type lpOffMapper struct{}
func (m lpOffMapper) MapScalar(s scalar.S) (scalar.S, error) {
v := s.ActualU() & 0x7fff
s.Actual = v
return s, nil
}
var LpOffMapper = lpOffMapper{}
type lpFlagsMapper struct{}
func (m lpFlagsMapper) MapScalar(s scalar.S) (scalar.S, error) {
v := (s.ActualU() >> 15) & 0x3
s.Actual = v
switch v {
switch s.ActualU() {
case LP_UNUSED:
s.Sym = "LP_UNUSED"
case LP_NORMAL:
@ -49,16 +37,6 @@ func (m lpFlagsMapper) MapScalar(s scalar.S) (scalar.S, error) {
var LpFlagsMapper = lpFlagsMapper{}
type lpLenMapper struct{}
func (m lpLenMapper) MapScalar(s scalar.S) (scalar.S, error) {
v := (s.ActualU() >> 17) & 0x7fff
s.Actual = v
return s, nil
}
var LpLenMapper = lpLenMapper{}
type Mask struct {
Mask uint64
}

View File

@ -85,14 +85,16 @@ func decodeItemIdsInternal(page *HeapPage, d *decode.D) {
/* 1: 7 | 4 */ // unsigned int lp_flags: 2
/* 2: 1 | 4 */ // unsigned int lp_len: 15
d.FieldStruct("item_id", func(d *decode.D) {
itemID := ItemID{}
itemIdData := d.FieldU32("item_id_data")
itemPos := d.Pos()
itemID.Off = uint32(d.FieldU32("lp_off", common.LpOffMapper))
d.SeekAbs(itemPos)
itemID.Flags = uint32(d.FieldU32("lp_flags", common.LpFlagsMapper))
d.SeekAbs(itemPos)
itemID.Len = uint32(d.FieldU32("lp_len", common.LpLenMapper))
itemID := ItemID{}
itemID.Off = uint32(itemIdData & 0x7fff)
itemID.Flags = uint32((itemIdData >> 15) & 0x3)
itemID.Len = uint32((itemIdData >> 17) & 0x7fff)
d.FieldValueU("lp_off", uint64(itemID.Off))
d.FieldValueU("lp_flags", uint64(itemID.Flags), common.LpFlagsMapper)
d.FieldValueU("lp_len", uint64(itemID.Len))
page.ItemIds = append(page.ItemIds, itemID)
})

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro10 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[60]{}: item_id 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_off: 384 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_len: 121 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | item_id_data: 15892864 0x108-0x10b.7 (4)
| | | lp_off: 384 0x10c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x10c-NA (0)
| | | lp_len: 121 0x10c-NA (0)

View File

@ -1,41 +1,51 @@
$ fq -d pg_btree ".[1].pd_linp[0,1,2,3,4,5,6,7,8,9] | dv" 16401
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[0]{}: item_id 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_off: 2304 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_len: 16 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | item_id_data: 2132224 0x2018-0x201b.7 (4)
| | | lp_off: 2304 0x201c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x201c-NA (0)
| | | lp_len: 16 0x201c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[1]{}: item_id 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_off: 8160 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_len: 16 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| item_id_data: 2138080 0x201c-0x201f.7 (4)
| | | lp_off: 8160 0x2020-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2020-NA (0)
| | | lp_len: 16 0x2020-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[2]{}: item_id 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_off: 8144 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_len: 16 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | item_id_data: 2138064 0x2020-0x2023.7 (4)
| | | lp_off: 8144 0x2024-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2024-NA (0)
| | | lp_len: 16 0x2024-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[3]{}: item_id 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_off: 8128 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_len: 16 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | item_id_data: 2138048 0x2024-0x2027.7 (4)
| | | lp_off: 8128 0x2028-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2028-NA (0)
| | | lp_len: 16 0x2028-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[4]{}: item_id 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_off: 8112 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_len: 16 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | item_id_data: 2138032 0x2028-0x202b.7 (4)
| | | lp_off: 8112 0x202c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x202c-NA (0)
| | | lp_len: 16 0x202c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[5]{}: item_id 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_off: 8096 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_len: 16 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| item_id_data: 2138016 0x202c-0x202f.7 (4)
| | | lp_off: 8096 0x2030-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2030-NA (0)
| | | lp_len: 16 0x2030-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[6]{}: item_id 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_off: 8080 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_len: 16 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | item_id_data: 2138000 0x2030-0x2033.7 (4)
| | | lp_off: 8080 0x2034-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2034-NA (0)
| | | lp_len: 16 0x2034-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[7]{}: item_id 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_off: 8064 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_len: 16 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | item_id_data: 2137984 0x2034-0x2037.7 (4)
| | | lp_off: 8064 0x2038-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2038-NA (0)
| | | lp_len: 16 0x2038-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[8]{}: item_id 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_off: 8048 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_flags: "LP_NORMAL" (1) 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_len: 16 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | item_id_data: 2137968 0x2038-0x203b.7 (4)
| | | lp_off: 8048 0x203c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x203c-NA (0)
| | | lp_len: 16 0x203c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[9]{}: item_id 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_off: 8032 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_flags: "LP_NORMAL" (1) 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_len: 16 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| item_id_data: 2137952 0x203c-0x203f.7 (4)
| | | lp_off: 8032 0x2040-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2040-NA (0)
| | | lp_len: 16 0x2040-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro10 ".[0].pd_linp[0,-1] | dv" 16404
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[99]{}: item_id 0x1a4-0x1a7.7 (4)
0x1a0| 40 8d 60 00 | @.`. | lp_off: 3392 0x1a4-0x1a7.7 (4)
0x1a0| 40 8d 60 00 | @.`. | lp_flags: "LP_NORMAL" (1) 0x1a4-0x1a7.7 (4)
0x1a0| 40 8d 60 00 | @.`. | lp_len: 48 0x1a4-0x1a7.7 (4)
0x1a0| 40 8d 60 00 | @.`. | item_id_data: 6327616 0x1a4-0x1a7.7 (4)
| | | lp_off: 3392 0x1a8-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1a8-NA (0)
| | | lp_len: 48 0x1a8-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro11 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[60]{}: item_id 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_off: 384 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_len: 121 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | item_id_data: 15892864 0x108-0x10b.7 (4)
| | | lp_off: 384 0x10c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x10c-NA (0)
| | | lp_len: 121 0x10c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro11 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro12 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[60]{}: item_id 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_off: 384 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_len: 121 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | item_id_data: 15892864 0x108-0x10b.7 (4)
| | | lp_off: 384 0x10c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x10c-NA (0)
| | | lp_len: 121 0x10c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro12 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro13 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[60]{}: item_id 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_off: 384 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | lp_len: 121 0x108-0x10b.7 (4)
0x100| 80 81 f2 00 | .... | item_id_data: 15892864 0x108-0x10b.7 (4)
| | | lp_off: 384 0x10c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x10c-NA (0)
| | | lp_len: 121 0x10c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro13 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro14 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[71]{}: item_id 0x134-0x137.7 (4)
0x130| 80 81 f2 00 | .... | lp_off: 384 0x134-0x137.7 (4)
0x130| 80 81 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x134-0x137.7 (4)
0x130| 80 81 f2 00 | .... | lp_len: 121 0x134-0x137.7 (4)
0x130| 80 81 f2 00 | .... | item_id_data: 15892864 0x134-0x137.7 (4)
| | | lp_off: 384 0x138-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x138-NA (0)
| | | lp_len: 121 0x138-NA (0)

View File

@ -1,41 +1,51 @@
$ fq -d pg_btree ".[1].pd_linp[0,1,2,3,4,5,6,7,8,9] | dv" 16404
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[0]{}: item_id 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_off: 2304 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_len: 16 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | item_id_data: 2132224 0x2018-0x201b.7 (4)
| | | lp_off: 2304 0x201c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x201c-NA (0)
| | | lp_len: 16 0x201c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[1]{}: item_id 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_off: 8160 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_len: 16 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| item_id_data: 2138080 0x201c-0x201f.7 (4)
| | | lp_off: 8160 0x2020-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2020-NA (0)
| | | lp_len: 16 0x2020-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[2]{}: item_id 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_off: 8144 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_len: 16 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | item_id_data: 2138064 0x2020-0x2023.7 (4)
| | | lp_off: 8144 0x2024-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2024-NA (0)
| | | lp_len: 16 0x2024-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[3]{}: item_id 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_off: 8128 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_len: 16 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | item_id_data: 2138048 0x2024-0x2027.7 (4)
| | | lp_off: 8128 0x2028-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2028-NA (0)
| | | lp_len: 16 0x2028-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[4]{}: item_id 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_off: 8112 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_len: 16 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | item_id_data: 2138032 0x2028-0x202b.7 (4)
| | | lp_off: 8112 0x202c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x202c-NA (0)
| | | lp_len: 16 0x202c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[5]{}: item_id 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_off: 8096 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_len: 16 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| item_id_data: 2138016 0x202c-0x202f.7 (4)
| | | lp_off: 8096 0x2030-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2030-NA (0)
| | | lp_len: 16 0x2030-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[6]{}: item_id 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_off: 8080 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_len: 16 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | item_id_data: 2138000 0x2030-0x2033.7 (4)
| | | lp_off: 8080 0x2034-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2034-NA (0)
| | | lp_len: 16 0x2034-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[7]{}: item_id 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_off: 8064 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_len: 16 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | item_id_data: 2137984 0x2034-0x2037.7 (4)
| | | lp_off: 8064 0x2038-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2038-NA (0)
| | | lp_len: 16 0x2038-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[8]{}: item_id 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_off: 8048 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_flags: "LP_NORMAL" (1) 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_len: 16 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | item_id_data: 2137968 0x2038-0x203b.7 (4)
| | | lp_off: 8048 0x203c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x203c-NA (0)
| | | lp_len: 16 0x203c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[9]{}: item_id 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_off: 8032 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_flags: "LP_NORMAL" (1) 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_len: 16 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| item_id_data: 2137952 0x203c-0x203f.7 (4)
| | | lp_off: 8032 0x2040-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2040-NA (0)
| | | lp_len: 16 0x2040-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgpro14 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee10 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_off: 8040 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_len: 121 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | item_id_data: 15900520 0x14-0x17.7 (4)
| | | lp_off: 8040 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 121 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[67]{}: item_id 0x120-0x123.7 (4)
0x120|68 81 f2 00 |h... | lp_off: 360 0x120-0x123.7 (4)
0x120|68 81 f2 00 |h... | lp_flags: "LP_NORMAL" (1) 0x120-0x123.7 (4)
0x120|68 81 f2 00 |h... | lp_len: 121 0x120-0x123.7 (4)
0x120|68 81 f2 00 |h... | item_id_data: 15892840 0x120-0x123.7 (4)
| | | lp_off: 360 0x124-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x124-NA (0)
| | | lp_len: 121 0x124-NA (0)

View File

@ -1,41 +1,51 @@
$ fq -d pg_btree ".[1].pd_linp[0,1,2,3,4,5,6,7,8,9] | dv" 16401
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[0]{}: item_id 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | lp_off: 8160 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | lp_len: 16 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | item_id_data: 2138080 0x2018-0x201b.7 (4)
| | | lp_off: 8160 0x201c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x201c-NA (0)
| | | lp_len: 16 0x201c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[1]{}: item_id 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| lp_off: 8144 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| lp_len: 16 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| item_id_data: 2138064 0x201c-0x201f.7 (4)
| | | lp_off: 8144 0x2020-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2020-NA (0)
| | | lp_len: 16 0x2020-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[2]{}: item_id 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | lp_off: 8128 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | lp_len: 16 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | item_id_data: 2138048 0x2020-0x2023.7 (4)
| | | lp_off: 8128 0x2024-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2024-NA (0)
| | | lp_len: 16 0x2024-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[3]{}: item_id 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_off: 8112 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_len: 16 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | item_id_data: 2138032 0x2024-0x2027.7 (4)
| | | lp_off: 8112 0x2028-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2028-NA (0)
| | | lp_len: 16 0x2028-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[4]{}: item_id 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | lp_off: 8096 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | lp_len: 16 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | item_id_data: 2138016 0x2028-0x202b.7 (4)
| | | lp_off: 8096 0x202c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x202c-NA (0)
| | | lp_len: 16 0x202c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[5]{}: item_id 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| lp_off: 8080 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| lp_len: 16 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| item_id_data: 2138000 0x202c-0x202f.7 (4)
| | | lp_off: 8080 0x2030-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2030-NA (0)
| | | lp_len: 16 0x2030-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[6]{}: item_id 0x2030-0x2033.7 (4)
0x2030|a0 88 20 00 |.. . | lp_off: 2208 0x2030-0x2033.7 (4)
0x2030|a0 88 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2030-0x2033.7 (4)
0x2030|a0 88 20 00 |.. . | lp_len: 16 0x2030-0x2033.7 (4)
0x2030|a0 88 20 00 |.. . | item_id_data: 2132128 0x2030-0x2033.7 (4)
| | | lp_off: 2208 0x2034-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2034-NA (0)
| | | lp_len: 16 0x2034-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[7]{}: item_id 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_off: 8064 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_len: 16 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | item_id_data: 2137984 0x2034-0x2037.7 (4)
| | | lp_off: 8064 0x2038-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2038-NA (0)
| | | lp_len: 16 0x2038-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[8]{}: item_id 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_off: 8048 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_flags: "LP_NORMAL" (1) 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_len: 16 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | item_id_data: 2137968 0x2038-0x203b.7 (4)
| | | lp_off: 8048 0x203c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x203c-NA (0)
| | | lp_len: 16 0x203c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[9]{}: item_id 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_off: 8032 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_flags: "LP_NORMAL" (1) 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_len: 16 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| item_id_data: 2137952 0x203c-0x203f.7 (4)
| | | lp_off: 8032 0x2040-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2040-NA (0)
| | | lp_len: 16 0x2040-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee10 ".[0].pd_linp[0,-1] | dv" 16403
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_off: 8120 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_len: 48 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | item_id_data: 6332344 0x14-0x17.7 (4)
| | | lp_off: 8120 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 48 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[155]{}: item_id 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_off: 680 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_flags: "LP_NORMAL" (1) 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_len: 48 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | item_id_data: 6324904 0x280-0x283.7 (4)
| | | lp_off: 680 0x284-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x284-NA (0)
| | | lp_len: 48 0x284-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee11 ".[0].pd_linp[0,-1] | dv" 90150
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_off: 8040 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_len: 121 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | item_id_data: 15900520 0x14-0x17.7 (4)
| | | lp_off: 8040 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 121 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[60]{}: item_id 0x104-0x107.7 (4)
0x100| 68 81 f2 00 | h... | lp_off: 360 0x104-0x107.7 (4)
0x100| 68 81 f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x104-0x107.7 (4)
0x100| 68 81 f2 00 | h... | lp_len: 121 0x104-0x107.7 (4)
0x100| 68 81 f2 00 | h... | item_id_data: 15892840 0x104-0x107.7 (4)
| | | lp_off: 360 0x108-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x108-NA (0)
| | | lp_len: 121 0x108-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee12 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_off: 8040 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_len: 121 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | item_id_data: 15900520 0x14-0x17.7 (4)
| | | lp_off: 8040 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 121 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[65]{}: item_id 0x118-0x11b.7 (4)
0x110| 68 81 f2 00 | h... | lp_off: 360 0x118-0x11b.7 (4)
0x110| 68 81 f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x118-0x11b.7 (4)
0x110| 68 81 f2 00 | h... | lp_len: 121 0x118-0x11b.7 (4)
0x110| 68 81 f2 00 | h... | item_id_data: 15892840 0x118-0x11b.7 (4)
| | | lp_off: 360 0x11c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x11c-NA (0)
| | | lp_len: 121 0x11c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee12 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_off: 8120 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_len: 48 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | item_id_data: 6332344 0x14-0x17.7 (4)
| | | lp_off: 8120 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 48 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[155]{}: item_id 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_off: 680 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_flags: "LP_NORMAL" (1) 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_len: 48 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | item_id_data: 6324904 0x280-0x283.7 (4)
| | | lp_off: 680 0x284-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x284-NA (0)
| | | lp_len: 48 0x284-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee13 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_off: 8040 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | lp_len: 121 0x14-0x17.7 (4)
0x10| 68 9f f2 00 | h... | item_id_data: 15900520 0x14-0x17.7 (4)
| | | lp_off: 8040 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 121 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[68]{}: item_id 0x124-0x127.7 (4)
0x120| 68 81 f2 00 | h... | lp_off: 360 0x124-0x127.7 (4)
0x120| 68 81 f2 00 | h... | lp_flags: "LP_NORMAL" (1) 0x124-0x127.7 (4)
0x120| 68 81 f2 00 | h... | lp_len: 121 0x124-0x127.7 (4)
0x120| 68 81 f2 00 | h... | item_id_data: 15892840 0x124-0x127.7 (4)
| | | lp_off: 360 0x128-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x128-NA (0)
| | | lp_len: 121 0x128-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee13 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_off: 8120 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | lp_len: 48 0x14-0x17.7 (4)
0x10| b8 9f 60 00 | ..`. | item_id_data: 6332344 0x14-0x17.7 (4)
| | | lp_off: 8120 0x18-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x18-NA (0)
| | | lp_len: 48 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[155]{}: item_id 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_off: 680 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_flags: "LP_NORMAL" (1) 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | lp_len: 48 0x280-0x283.7 (4)
0x280|a8 82 60 00 |..`. | item_id_data: 6324904 0x280-0x283.7 (4)
| | | lp_off: 680 0x284-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x284-NA (0)
| | | lp_len: 48 0x284-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=pgproee14 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x14-0x17.7 (4)
0x10| 53 00 01 00 | S... | lp_off: 83 0x14-0x17.7 (4)
0x10| 53 00 01 00 | S... | lp_flags: "LP_REDIRECT" (2) 0x14-0x17.7 (4)
0x10| 53 00 01 00 | S... | lp_len: 0 0x14-0x17.7 (4)
0x10| 53 00 01 00 | S... | item_id_data: 65619 0x14-0x17.7 (4)
| | | lp_off: 83 0x18-NA (0)
| | | lp_flags: "LP_REDIRECT" (2) 0x18-NA (0)
| | | lp_len: 0 0x18-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[85]{}: item_id 0x168-0x16b.7 (4)
0x160| e8 81 f2 00 | .... | lp_off: 488 0x168-0x16b.7 (4)
0x160| e8 81 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x168-0x16b.7 (4)
0x160| e8 81 f2 00 | .... | lp_len: 121 0x168-0x16b.7 (4)
0x160| e8 81 f2 00 | .... | item_id_data: 15892968 0x168-0x16b.7 (4)
| | | lp_off: 488 0x16c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x16c-NA (0)
| | | lp_len: 121 0x16c-NA (0)

View File

@ -1,41 +1,51 @@
$ fq -d pg_btree ".[1].pd_linp[0,1,2,3,4,5,6,7,8,9] | dv" 16404
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[0]{}: item_id 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | lp_off: 8160 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | lp_len: 16 0x2018-0x201b.7 (4)
0x2010| e0 9f 20 00 | .. . | item_id_data: 2138080 0x2018-0x201b.7 (4)
| | | lp_off: 8160 0x201c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x201c-NA (0)
| | | lp_len: 16 0x201c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[1]{}: item_id 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| lp_off: 8144 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| lp_len: 16 0x201c-0x201f.7 (4)
0x2010| d0 9f 20 00| .. .| item_id_data: 2138064 0x201c-0x201f.7 (4)
| | | lp_off: 8144 0x2020-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2020-NA (0)
| | | lp_len: 16 0x2020-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[2]{}: item_id 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | lp_off: 8128 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | lp_len: 16 0x2020-0x2023.7 (4)
0x2020|c0 9f 20 00 |.. . | item_id_data: 2138048 0x2020-0x2023.7 (4)
| | | lp_off: 8128 0x2024-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2024-NA (0)
| | | lp_len: 16 0x2024-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[3]{}: item_id 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_off: 8112 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_len: 16 0x2024-0x2027.7 (4)
0x2020| b0 9f 20 00 | .. . | item_id_data: 2138032 0x2024-0x2027.7 (4)
| | | lp_off: 8112 0x2028-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2028-NA (0)
| | | lp_len: 16 0x2028-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[4]{}: item_id 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | lp_off: 8096 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | lp_len: 16 0x2028-0x202b.7 (4)
0x2020| a0 9f 20 00 | .. . | item_id_data: 2138016 0x2028-0x202b.7 (4)
| | | lp_off: 8096 0x202c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x202c-NA (0)
| | | lp_len: 16 0x202c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[5]{}: item_id 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| lp_off: 8080 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| lp_len: 16 0x202c-0x202f.7 (4)
0x2020| 90 9f 20 00| .. .| item_id_data: 2138000 0x202c-0x202f.7 (4)
| | | lp_off: 8080 0x2030-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2030-NA (0)
| | | lp_len: 16 0x2030-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[6]{}: item_id 0x2030-0x2033.7 (4)
0x2030|80 9f 20 00 |.. . | lp_off: 8064 0x2030-0x2033.7 (4)
0x2030|80 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2030-0x2033.7 (4)
0x2030|80 9f 20 00 |.. . | lp_len: 16 0x2030-0x2033.7 (4)
0x2030|80 9f 20 00 |.. . | item_id_data: 2137984 0x2030-0x2033.7 (4)
| | | lp_off: 8064 0x2034-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2034-NA (0)
| | | lp_len: 16 0x2034-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[7]{}: item_id 0x2034-0x2037.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_off: 8048 0x2034-0x2037.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_flags: "LP_NORMAL" (1) 0x2034-0x2037.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_len: 16 0x2034-0x2037.7 (4)
0x2030| 70 9f 20 00 | p. . | item_id_data: 2137968 0x2034-0x2037.7 (4)
| | | lp_off: 8048 0x2038-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2038-NA (0)
| | | lp_len: 16 0x2038-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[8]{}: item_id 0x2038-0x203b.7 (4)
0x2030| 60 9f 20 00 | `. . | lp_off: 8032 0x2038-0x203b.7 (4)
0x2030| 60 9f 20 00 | `. . | lp_flags: "LP_NORMAL" (1) 0x2038-0x203b.7 (4)
0x2030| 60 9f 20 00 | `. . | lp_len: 16 0x2038-0x203b.7 (4)
0x2030| 60 9f 20 00 | `. . | item_id_data: 2137952 0x2038-0x203b.7 (4)
| | | lp_off: 8032 0x203c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x203c-NA (0)
| | | lp_len: 16 0x203c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[9]{}: item_id 0x203c-0x203f.7 (4)
0x2030| 50 9f 20 00| P. .| lp_off: 8016 0x203c-0x203f.7 (4)
0x2030| 50 9f 20 00| P. .| lp_flags: "LP_NORMAL" (1) 0x203c-0x203f.7 (4)
0x2030| 50 9f 20 00| P. .| lp_len: 16 0x203c-0x203f.7 (4)
0x2030| 50 9f 20 00| P. .| item_id_data: 2137936 0x203c-0x203f.7 (4)
| | | lp_off: 8016 0x2040-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2040-NA (0)
| | | lp_len: 16 0x2040-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=postgres10 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[75]{}: item_id 0x144-0x147.7 (4)
0x140| 80 82 f2 00 | .... | lp_off: 640 0x144-0x147.7 (4)
0x140| 80 82 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x144-0x147.7 (4)
0x140| 80 82 f2 00 | .... | lp_len: 121 0x144-0x147.7 (4)
0x140| 80 82 f2 00 | .... | item_id_data: 15893120 0x144-0x147.7 (4)
| | | lp_off: 640 0x148-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x148-NA (0)
| | | lp_len: 121 0x148-NA (0)

View File

@ -1,41 +1,51 @@
$ fq -d pg_btree ".[1].pd_linp[0,1,2,3,4,5,6,7,8,9] | dv" 16401
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[0]{}: item_id 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_off: 2304 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | lp_len: 16 0x2018-0x201b.7 (4)
0x2010| 00 89 20 00 | .. . | item_id_data: 2132224 0x2018-0x201b.7 (4)
| | | lp_off: 2304 0x201c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x201c-NA (0)
| | | lp_len: 16 0x201c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[1]{}: item_id 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_off: 8160 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| lp_len: 16 0x201c-0x201f.7 (4)
0x2010| e0 9f 20 00| .. .| item_id_data: 2138080 0x201c-0x201f.7 (4)
| | | lp_off: 8160 0x2020-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2020-NA (0)
| | | lp_len: 16 0x2020-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[2]{}: item_id 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_off: 8144 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | lp_len: 16 0x2020-0x2023.7 (4)
0x2020|d0 9f 20 00 |.. . | item_id_data: 2138064 0x2020-0x2023.7 (4)
| | | lp_off: 8144 0x2024-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2024-NA (0)
| | | lp_len: 16 0x2024-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[3]{}: item_id 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_off: 8128 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | lp_len: 16 0x2024-0x2027.7 (4)
0x2020| c0 9f 20 00 | .. . | item_id_data: 2138048 0x2024-0x2027.7 (4)
| | | lp_off: 8128 0x2028-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2028-NA (0)
| | | lp_len: 16 0x2028-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[4]{}: item_id 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_off: 8112 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | lp_len: 16 0x2028-0x202b.7 (4)
0x2020| b0 9f 20 00 | .. . | item_id_data: 2138032 0x2028-0x202b.7 (4)
| | | lp_off: 8112 0x202c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x202c-NA (0)
| | | lp_len: 16 0x202c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[5]{}: item_id 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_off: 8096 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1) 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| lp_len: 16 0x202c-0x202f.7 (4)
0x2020| a0 9f 20 00| .. .| item_id_data: 2138016 0x202c-0x202f.7 (4)
| | | lp_off: 8096 0x2030-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2030-NA (0)
| | | lp_len: 16 0x2030-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[6]{}: item_id 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_off: 8080 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1) 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | lp_len: 16 0x2030-0x2033.7 (4)
0x2030|90 9f 20 00 |.. . | item_id_data: 2138000 0x2030-0x2033.7 (4)
| | | lp_off: 8080 0x2034-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2034-NA (0)
| | | lp_len: 16 0x2034-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[7]{}: item_id 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_off: 8064 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1) 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | lp_len: 16 0x2034-0x2037.7 (4)
0x2030| 80 9f 20 00 | .. . | item_id_data: 2137984 0x2034-0x2037.7 (4)
| | | lp_off: 8064 0x2038-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2038-NA (0)
| | | lp_len: 16 0x2038-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[8]{}: item_id 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_off: 8048 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_flags: "LP_NORMAL" (1) 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | lp_len: 16 0x2038-0x203b.7 (4)
0x2030| 70 9f 20 00 | p. . | item_id_data: 2137968 0x2038-0x203b.7 (4)
| | | lp_off: 8048 0x203c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x203c-NA (0)
| | | lp_len: 16 0x203c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[1].pd_linp[9]{}: item_id 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_off: 8032 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_flags: "LP_NORMAL" (1) 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| lp_len: 16 0x203c-0x203f.7 (4)
0x2030| 60 9f 20 00| `. .| item_id_data: 2137952 0x203c-0x203f.7 (4)
| | | lp_off: 8032 0x2040-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x2040-NA (0)
| | | lp_len: 16 0x2040-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=postgres10 ".[0].pd_linp[0,-1] | dv" 16407
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=postgres11 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[82]{}: item_id 0x160-0x163.7 (4)
0x160|00 82 f2 00 |.... | lp_off: 512 0x160-0x163.7 (4)
0x160|00 82 f2 00 |.... | lp_flags: "LP_NORMAL" (1) 0x160-0x163.7 (4)
0x160|00 82 f2 00 |.... | lp_len: 121 0x160-0x163.7 (4)
0x160|00 82 f2 00 |.... | item_id_data: 15892992 0x160-0x163.7 (4)
| | | lp_off: 512 0x164-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x164-NA (0)
| | | lp_len: 121 0x164-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=postgres11 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=postgres12 ".[0].pd_linp[0,-1] | dv" 16396
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_off: 8064 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | lp_len: 121 0x18-0x1b.7 (4)
0x10| 80 9f f2 00 | .... | item_id_data: 15900544 0x18-0x1b.7 (4)
| | | lp_off: 8064 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 121 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[81]{}: item_id 0x15c-0x15f.7 (4)
0x150| 00 82 f2 00| ....| lp_off: 512 0x15c-0x15f.7 (4)
0x150| 00 82 f2 00| ....| lp_flags: "LP_NORMAL" (1) 0x15c-0x15f.7 (4)
0x150| 00 82 f2 00| ....| lp_len: 121 0x15c-0x15f.7 (4)
0x150| 00 82 f2 00| ....| item_id_data: 15892992 0x15c-0x15f.7 (4)
| | | lp_off: 512 0x160-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x160-NA (0)
| | | lp_len: 121 0x160-NA (0)

View File

@ -1,9 +1,11 @@
$ fq -d pg_heap -o flavour=postgres12 ".[0].pd_linp[0,-1] | dv" 16406
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -1,13 +1,16 @@
$ fq -d pg_heap -o flavour=postgres13 ".[0].pd_linp[0, 1, -1] | dv" 16407
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_off: 8144 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | lp_len: 48 0x18-0x1b.7 (4)
0x10| d0 9f 60 00 | ..`. | item_id_data: 6332368 0x18-0x1b.7 (4)
| | | lp_off: 8144 0x1c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1c-NA (0)
| | | lp_len: 48 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[1]{}: item_id 0x1c-0x1f.7 (4)
0x10| a0 9f 60 00| ..`.| lp_off: 8096 0x1c-0x1f.7 (4)
0x10| a0 9f 60 00| ..`.| lp_flags: "LP_NORMAL" (1) 0x1c-0x1f.7 (4)
0x10| a0 9f 60 00| ..`.| lp_len: 48 0x1c-0x1f.7 (4)
0x10| a0 9f 60 00| ..`.| item_id_data: 6332320 0x1c-0x1f.7 (4)
| | | lp_off: 8096 0x20-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x20-NA (0)
| | | lp_len: 48 0x20-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[156]{}: item_id 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_off: 656 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_flags: "LP_NORMAL" (1) 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | lp_len: 48 0x288-0x28b.7 (4)
0x280| 90 82 60 00 | ..`. | item_id_data: 6324880 0x288-0x28b.7 (4)
| | | lp_off: 656 0x28c-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x28c-NA (0)
| | | lp_len: 48 0x28c-NA (0)

View File

@ -58,205 +58,255 @@ $ fq -d pg_btree -o flavour=postgres14 ".[] | d" 16404
0x2010| 00 00 00 00 | .... | pd_prune_xid: 0
| | | pd_linp[0:367]:
| | | [0]{}: item_id
0x2010| 00 89 20 00 | .. . | lp_off: 2304
0x2010| 00 89 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2010| 00 89 20 00 | .. . | lp_len: 16
0x2010| 00 89 20 00 | .. . | item_id_data: 2132224
| | | lp_off: 2304
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [1]{}: item_id
0x2010| e0 9f 20 00| .. .| lp_off: 8160
0x2010| e0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x2010| e0 9f 20 00| .. .| lp_len: 16
0x2010| e0 9f 20 00| .. .| item_id_data: 2138080
| | | lp_off: 8160
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [2]{}: item_id
0x2020|d0 9f 20 00 |.. . | lp_off: 8144
0x2020|d0 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x2020|d0 9f 20 00 |.. . | lp_len: 16
0x2020|d0 9f 20 00 |.. . | item_id_data: 2138064
| | | lp_off: 8144
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [3]{}: item_id
0x2020| c0 9f 20 00 | .. . | lp_off: 8128
0x2020| c0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2020| c0 9f 20 00 | .. . | lp_len: 16
0x2020| c0 9f 20 00 | .. . | item_id_data: 2138048
| | | lp_off: 8128
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [4]{}: item_id
0x2020| b0 9f 20 00 | .. . | lp_off: 8112
0x2020| b0 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2020| b0 9f 20 00 | .. . | lp_len: 16
0x2020| b0 9f 20 00 | .. . | item_id_data: 2138032
| | | lp_off: 8112
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [5]{}: item_id
0x2020| a0 9f 20 00| .. .| lp_off: 8096
0x2020| a0 9f 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x2020| a0 9f 20 00| .. .| lp_len: 16
0x2020| a0 9f 20 00| .. .| item_id_data: 2138016
| | | lp_off: 8096
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [6]{}: item_id
0x2030|90 9f 20 00 |.. . | lp_off: 8080
0x2030|90 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x2030|90 9f 20 00 |.. . | lp_len: 16
0x2030|90 9f 20 00 |.. . | item_id_data: 2138000
| | | lp_off: 8080
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [7]{}: item_id
0x2030| 80 9f 20 00 | .. . | lp_off: 8064
0x2030| 80 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2030| 80 9f 20 00 | .. . | lp_len: 16
0x2030| 80 9f 20 00 | .. . | item_id_data: 2137984
| | | lp_off: 8064
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [8]{}: item_id
0x2030| 70 9f 20 00 | p. . | lp_off: 8048
0x2030| 70 9f 20 00 | p. . | lp_flags: "LP_NORMAL" (1)
0x2030| 70 9f 20 00 | p. . | lp_len: 16
0x2030| 70 9f 20 00 | p. . | item_id_data: 2137968
| | | lp_off: 8048
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [9]{}: item_id
0x2030| 60 9f 20 00| `. .| lp_off: 8032
0x2030| 60 9f 20 00| `. .| lp_flags: "LP_NORMAL" (1)
0x2030| 60 9f 20 00| `. .| lp_len: 16
0x2030| 60 9f 20 00| `. .| item_id_data: 2137952
| | | lp_off: 8032
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [10]{}: item_id
0x2040|50 9f 20 00 |P. . | lp_off: 8016
0x2040|50 9f 20 00 |P. . | lp_flags: "LP_NORMAL" (1)
0x2040|50 9f 20 00 |P. . | lp_len: 16
0x2040|50 9f 20 00 |P. . | item_id_data: 2137936
| | | lp_off: 8016
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [11]{}: item_id
0x2040| 40 9f 20 00 | @. . | lp_off: 8000
0x2040| 40 9f 20 00 | @. . | lp_flags: "LP_NORMAL" (1)
0x2040| 40 9f 20 00 | @. . | lp_len: 16
0x2040| 40 9f 20 00 | @. . | item_id_data: 2137920
| | | lp_off: 8000
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [12]{}: item_id
0x2040| 30 9f 20 00 | 0. . | lp_off: 7984
0x2040| 30 9f 20 00 | 0. . | lp_flags: "LP_NORMAL" (1)
0x2040| 30 9f 20 00 | 0. . | lp_len: 16
0x2040| 30 9f 20 00 | 0. . | item_id_data: 2137904
| | | lp_off: 7984
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [13]{}: item_id
0x2040| 20 9f 20 00| . .| lp_off: 7968
0x2040| 20 9f 20 00| . .| lp_flags: "LP_NORMAL" (1)
0x2040| 20 9f 20 00| . .| lp_len: 16
0x2040| 20 9f 20 00| . .| item_id_data: 2137888
| | | lp_off: 7968
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [14]{}: item_id
0x2050|10 9f 20 00 |.. . | lp_off: 7952
0x2050|10 9f 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x2050|10 9f 20 00 |.. . | lp_len: 16
0x2050|10 9f 20 00 |.. . | item_id_data: 2137872
| | | lp_off: 7952
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [15]{}: item_id
0x2050| 00 9f 20 00 | .. . | lp_off: 7936
0x2050| 00 9f 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2050| 00 9f 20 00 | .. . | lp_len: 16
0x2050| 00 9f 20 00 | .. . | item_id_data: 2137856
| | | lp_off: 7936
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [16]{}: item_id
0x2050| f0 9e 20 00 | .. . | lp_off: 7920
0x2050| f0 9e 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2050| f0 9e 20 00 | .. . | lp_len: 16
0x2050| f0 9e 20 00 | .. . | item_id_data: 2137840
| | | lp_off: 7920
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [17]{}: item_id
0x2050| e0 9e 20 00| .. .| lp_off: 7904
0x2050| e0 9e 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x2050| e0 9e 20 00| .. .| lp_len: 16
0x2050| e0 9e 20 00| .. .| item_id_data: 2137824
| | | lp_off: 7904
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [18]{}: item_id
0x2060|d0 9e 20 00 |.. . | lp_off: 7888
0x2060|d0 9e 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x2060|d0 9e 20 00 |.. . | lp_len: 16
0x2060|d0 9e 20 00 |.. . | item_id_data: 2137808
| | | lp_off: 7888
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [19]{}: item_id
0x2060| c0 9e 20 00 | .. . | lp_off: 7872
0x2060| c0 9e 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2060| c0 9e 20 00 | .. . | lp_len: 16
0x2060| c0 9e 20 00 | .. . | item_id_data: 2137792
| | | lp_off: 7872
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [20]{}: item_id
0x2060| b0 9e 20 00 | .. . | lp_off: 7856
0x2060| b0 9e 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2060| b0 9e 20 00 | .. . | lp_len: 16
0x2060| b0 9e 20 00 | .. . | item_id_data: 2137776
| | | lp_off: 7856
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [21]{}: item_id
0x2060| a0 9e 20 00| .. .| lp_off: 7840
0x2060| a0 9e 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x2060| a0 9e 20 00| .. .| lp_len: 16
0x2060| a0 9e 20 00| .. .| item_id_data: 2137760
| | | lp_off: 7840
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [22]{}: item_id
0x2070|90 9e 20 00 |.. . | lp_off: 7824
0x2070|90 9e 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x2070|90 9e 20 00 |.. . | lp_len: 16
0x2070|90 9e 20 00 |.. . | item_id_data: 2137744
| | | lp_off: 7824
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [23]{}: item_id
0x2070| 80 9e 20 00 | .. . | lp_off: 7808
0x2070| 80 9e 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2070| 80 9e 20 00 | .. . | lp_len: 16
0x2070| 80 9e 20 00 | .. . | item_id_data: 2137728
| | | lp_off: 7808
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [24]{}: item_id
0x2070| 70 9e 20 00 | p. . | lp_off: 7792
0x2070| 70 9e 20 00 | p. . | lp_flags: "LP_NORMAL" (1)
0x2070| 70 9e 20 00 | p. . | lp_len: 16
0x2070| 70 9e 20 00 | p. . | item_id_data: 2137712
| | | lp_off: 7792
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [25]{}: item_id
0x2070| 60 9e 20 00| `. .| lp_off: 7776
0x2070| 60 9e 20 00| `. .| lp_flags: "LP_NORMAL" (1)
0x2070| 60 9e 20 00| `. .| lp_len: 16
0x2070| 60 9e 20 00| `. .| item_id_data: 2137696
| | | lp_off: 7776
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [26]{}: item_id
0x2080|50 9e 20 00 |P. . | lp_off: 7760
0x2080|50 9e 20 00 |P. . | lp_flags: "LP_NORMAL" (1)
0x2080|50 9e 20 00 |P. . | lp_len: 16
0x2080|50 9e 20 00 |P. . | item_id_data: 2137680
| | | lp_off: 7760
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [27]{}: item_id
0x2080| 40 9e 20 00 | @. . | lp_off: 7744
0x2080| 40 9e 20 00 | @. . | lp_flags: "LP_NORMAL" (1)
0x2080| 40 9e 20 00 | @. . | lp_len: 16
0x2080| 40 9e 20 00 | @. . | item_id_data: 2137664
| | | lp_off: 7744
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [28]{}: item_id
0x2080| 30 9e 20 00 | 0. . | lp_off: 7728
0x2080| 30 9e 20 00 | 0. . | lp_flags: "LP_NORMAL" (1)
0x2080| 30 9e 20 00 | 0. . | lp_len: 16
0x2080| 30 9e 20 00 | 0. . | item_id_data: 2137648
| | | lp_off: 7728
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [29]{}: item_id
0x2080| 20 9e 20 00| . .| lp_off: 7712
0x2080| 20 9e 20 00| . .| lp_flags: "LP_NORMAL" (1)
0x2080| 20 9e 20 00| . .| lp_len: 16
0x2080| 20 9e 20 00| . .| item_id_data: 2137632
| | | lp_off: 7712
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [30]{}: item_id
0x2090|10 9e 20 00 |.. . | lp_off: 7696
0x2090|10 9e 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x2090|10 9e 20 00 |.. . | lp_len: 16
0x2090|10 9e 20 00 |.. . | item_id_data: 2137616
| | | lp_off: 7696
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [31]{}: item_id
0x2090| 00 9e 20 00 | .. . | lp_off: 7680
0x2090| 00 9e 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2090| 00 9e 20 00 | .. . | lp_len: 16
0x2090| 00 9e 20 00 | .. . | item_id_data: 2137600
| | | lp_off: 7680
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [32]{}: item_id
0x2090| f0 9d 20 00 | .. . | lp_off: 7664
0x2090| f0 9d 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x2090| f0 9d 20 00 | .. . | lp_len: 16
0x2090| f0 9d 20 00 | .. . | item_id_data: 2137584
| | | lp_off: 7664
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [33]{}: item_id
0x2090| e0 9d 20 00| .. .| lp_off: 7648
0x2090| e0 9d 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x2090| e0 9d 20 00| .. .| lp_len: 16
0x2090| e0 9d 20 00| .. .| item_id_data: 2137568
| | | lp_off: 7648
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [34]{}: item_id
0x20a0|d0 9d 20 00 |.. . | lp_off: 7632
0x20a0|d0 9d 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x20a0|d0 9d 20 00 |.. . | lp_len: 16
0x20a0|d0 9d 20 00 |.. . | item_id_data: 2137552
| | | lp_off: 7632
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [35]{}: item_id
0x20a0| c0 9d 20 00 | .. . | lp_off: 7616
0x20a0| c0 9d 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x20a0| c0 9d 20 00 | .. . | lp_len: 16
0x20a0| c0 9d 20 00 | .. . | item_id_data: 2137536
| | | lp_off: 7616
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [36]{}: item_id
0x20a0| b0 9d 20 00 | .. . | lp_off: 7600
0x20a0| b0 9d 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x20a0| b0 9d 20 00 | .. . | lp_len: 16
0x20a0| b0 9d 20 00 | .. . | item_id_data: 2137520
| | | lp_off: 7600
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [37]{}: item_id
0x20a0| a0 9d 20 00| .. .| lp_off: 7584
0x20a0| a0 9d 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x20a0| a0 9d 20 00| .. .| lp_len: 16
0x20a0| a0 9d 20 00| .. .| item_id_data: 2137504
| | | lp_off: 7584
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [38]{}: item_id
0x20b0|90 9d 20 00 |.. . | lp_off: 7568
0x20b0|90 9d 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x20b0|90 9d 20 00 |.. . | lp_len: 16
0x20b0|90 9d 20 00 |.. . | item_id_data: 2137488
| | | lp_off: 7568
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [39]{}: item_id
0x20b0| 80 9d 20 00 | .. . | lp_off: 7552
0x20b0| 80 9d 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x20b0| 80 9d 20 00 | .. . | lp_len: 16
0x20b0| 80 9d 20 00 | .. . | item_id_data: 2137472
| | | lp_off: 7552
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [40]{}: item_id
0x20b0| 70 9d 20 00 | p. . | lp_off: 7536
0x20b0| 70 9d 20 00 | p. . | lp_flags: "LP_NORMAL" (1)
0x20b0| 70 9d 20 00 | p. . | lp_len: 16
0x20b0| 70 9d 20 00 | p. . | item_id_data: 2137456
| | | lp_off: 7536
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [41]{}: item_id
0x20b0| 60 9d 20 00| `. .| lp_off: 7520
0x20b0| 60 9d 20 00| `. .| lp_flags: "LP_NORMAL" (1)
0x20b0| 60 9d 20 00| `. .| lp_len: 16
0x20b0| 60 9d 20 00| `. .| item_id_data: 2137440
| | | lp_off: 7520
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [42]{}: item_id
0x20c0|50 9d 20 00 |P. . | lp_off: 7504
0x20c0|50 9d 20 00 |P. . | lp_flags: "LP_NORMAL" (1)
0x20c0|50 9d 20 00 |P. . | lp_len: 16
0x20c0|50 9d 20 00 |P. . | item_id_data: 2137424
| | | lp_off: 7504
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [43]{}: item_id
0x20c0| 40 9d 20 00 | @. . | lp_off: 7488
0x20c0| 40 9d 20 00 | @. . | lp_flags: "LP_NORMAL" (1)
0x20c0| 40 9d 20 00 | @. . | lp_len: 16
0x20c0| 40 9d 20 00 | @. . | item_id_data: 2137408
| | | lp_off: 7488
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [44]{}: item_id
0x20c0| 30 9d 20 00 | 0. . | lp_off: 7472
0x20c0| 30 9d 20 00 | 0. . | lp_flags: "LP_NORMAL" (1)
0x20c0| 30 9d 20 00 | 0. . | lp_len: 16
0x20c0| 30 9d 20 00 | 0. . | item_id_data: 2137392
| | | lp_off: 7472
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [45]{}: item_id
0x20c0| 20 9d 20 00| . .| lp_off: 7456
0x20c0| 20 9d 20 00| . .| lp_flags: "LP_NORMAL" (1)
0x20c0| 20 9d 20 00| . .| lp_len: 16
0x20c0| 20 9d 20 00| . .| item_id_data: 2137376
| | | lp_off: 7456
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [46]{}: item_id
0x20d0|10 9d 20 00 |.. . | lp_off: 7440
0x20d0|10 9d 20 00 |.. . | lp_flags: "LP_NORMAL" (1)
0x20d0|10 9d 20 00 |.. . | lp_len: 16
0x20d0|10 9d 20 00 |.. . | item_id_data: 2137360
| | | lp_off: 7440
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [47]{}: item_id
0x20d0| 00 9d 20 00 | .. . | lp_off: 7424
0x20d0| 00 9d 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x20d0| 00 9d 20 00 | .. . | lp_len: 16
0x20d0| 00 9d 20 00 | .. . | item_id_data: 2137344
| | | lp_off: 7424
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [48]{}: item_id
0x20d0| f0 9c 20 00 | .. . | lp_off: 7408
0x20d0| f0 9c 20 00 | .. . | lp_flags: "LP_NORMAL" (1)
0x20d0| f0 9c 20 00 | .. . | lp_len: 16
0x20d0| f0 9c 20 00 | .. . | item_id_data: 2137328
| | | lp_off: 7408
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [49]{}: item_id
0x20d0| e0 9c 20 00| .. .| lp_off: 7392
0x20d0| e0 9c 20 00| .. .| lp_flags: "LP_NORMAL" (1)
0x20d0| e0 9c 20 00| .. .| lp_len: 16
0x20d0| e0 9c 20 00| .. .| item_id_data: 2137312
| | | lp_off: 7392
| | | lp_flags: "LP_NORMAL" (1)
| | | lp_len: 16
| | | [50:367]: ...
0x25d0| 00 00 00 00 00 00 00 00 00 00 00 00| ............| free_space: "00000000000000000000000000000000000000000000000..." (raw bits)
0x25e0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................|

View File

@ -1,17 +1,21 @@
$ fq -d pg_heap -o flavour=postgres14 ".[0].pd_linp[0, 1, 2, -1] | dv" 16994
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 00 80 01 00 | .... | lp_off: 0 0x18-0x1b.7 (4)
0x10| 00 80 01 00 | .... | lp_flags: "LP_DEAD" (3) 0x18-0x1b.7 (4)
0x10| 00 80 01 00 | .... | lp_len: 0 0x18-0x1b.7 (4)
0x10| 00 80 01 00 | .... | item_id_data: 98304 0x18-0x1b.7 (4)
| | | lp_off: 0 0x1c-NA (0)
| | | lp_flags: "LP_DEAD" (3) 0x1c-NA (0)
| | | lp_len: 0 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[1]{}: item_id 0x1c-0x1f.7 (4)
0x10| e0 9f 38 00| ..8.| lp_off: 8160 0x1c-0x1f.7 (4)
0x10| e0 9f 38 00| ..8.| lp_flags: "LP_NORMAL" (1) 0x1c-0x1f.7 (4)
0x10| e0 9f 38 00| ..8.| lp_len: 28 0x1c-0x1f.7 (4)
0x10| e0 9f 38 00| ..8.| item_id_data: 3710944 0x1c-0x1f.7 (4)
| | | lp_off: 8160 0x20-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x20-NA (0)
| | | lp_len: 28 0x20-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[2]{}: item_id 0x20-0x23.7 (4)
0x20|c0 9f 38 00 |..8. | lp_off: 8128 0x20-0x23.7 (4)
0x20|c0 9f 38 00 |..8. | lp_flags: "LP_NORMAL" (1) 0x20-0x23.7 (4)
0x20|c0 9f 38 00 |..8. | lp_len: 28 0x20-0x23.7 (4)
0x20|c0 9f 38 00 |..8. | item_id_data: 3710912 0x20-0x23.7 (4)
| | | lp_off: 8128 0x24-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x24-NA (0)
| | | lp_len: 28 0x24-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[225]{}: item_id 0x39c-0x39f.7 (4)
0x390| e0 83 38 00| ..8.| lp_off: 992 0x39c-0x39f.7 (4)
0x390| e0 83 38 00| ..8.| lp_flags: "LP_NORMAL" (1) 0x39c-0x39f.7 (4)
0x390| e0 83 38 00| ..8.| lp_len: 28 0x39c-0x39f.7 (4)
0x390| e0 83 38 00| ..8.| item_id_data: 3703776 0x39c-0x39f.7 (4)
| | | lp_off: 992 0x3a0-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x3a0-NA (0)
| | | lp_len: 28 0x3a0-NA (0)

View File

@ -1,13 +1,16 @@
$ fq -d pg_heap -o flavour=postgres14 ".[0].pd_linp[0, 1, -1] | dv" 33233
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[0]{}: item_id 0x18-0x1b.7 (4)
0x10| 4d 00 01 00 | M... | lp_off: 77 0x18-0x1b.7 (4)
0x10| 4d 00 01 00 | M... | lp_flags: "LP_REDIRECT" (2) 0x18-0x1b.7 (4)
0x10| 4d 00 01 00 | M... | lp_len: 0 0x18-0x1b.7 (4)
0x10| 4d 00 01 00 | M... | item_id_data: 65613 0x18-0x1b.7 (4)
| | | lp_off: 77 0x1c-NA (0)
| | | lp_flags: "LP_REDIRECT" (2) 0x1c-NA (0)
| | | lp_len: 0 0x1c-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[1]{}: item_id 0x1c-0x1f.7 (4)
0x10| 6a 00 01 00| j...| lp_off: 106 0x1c-0x1f.7 (4)
0x10| 6a 00 01 00| j...| lp_flags: "LP_REDIRECT" (2) 0x1c-0x1f.7 (4)
0x10| 6a 00 01 00| j...| lp_len: 0 0x1c-0x1f.7 (4)
0x10| 6a 00 01 00| j...| item_id_data: 65642 0x1c-0x1f.7 (4)
| | | lp_off: 106 0x20-NA (0)
| | | lp_flags: "LP_REDIRECT" (2) 0x20-NA (0)
| | | lp_len: 0 0x20-NA (0)
|00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.[0].pd_linp[119]{}: item_id 0x1f4-0x1f7.7 (4)
0x1f0| 80 82 f2 00 | .... | lp_off: 640 0x1f4-0x1f7.7 (4)
0x1f0| 80 82 f2 00 | .... | lp_flags: "LP_NORMAL" (1) 0x1f4-0x1f7.7 (4)
0x1f0| 80 82 f2 00 | .... | lp_len: 121 0x1f4-0x1f7.7 (4)
0x1f0| 80 82 f2 00 | .... | item_id_data: 15893120 0x1f4-0x1f7.7 (4)
| | | lp_off: 640 0x1f8-NA (0)
| | | lp_flags: "LP_NORMAL" (1) 0x1f8-NA (0)
| | | lp_len: 121 0x1f8-NA (0)