Skip to content

Commit

Permalink
docs: use 8+8 octets for blob entry serde
Browse files Browse the repository at this point in the history
  • Loading branch information
kuron99 committed Jan 23, 2025
1 parent ef900e4 commit a91cb86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/data-serde-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
| `0xf7` | _reserved_ |`#f7`
| `0xf8` | `row` |`#f8, n=uint, s=e(n)` | `s` からなる行
| `0xf9` | `array` | `#f9, n=uint, s=e(n)` | `s` からなる配列
| `0xfa` | `clob` | `#fa, p=b(1), s=uint` | object idが `s` の CLOB. pはCLOBのプロバイダを示す( `#01` の場合はdatastore, `#02` の場合はSQL) |
| `0xfb` | `blob` | `#fb, p=b(1), s=uint` | object idが `s` の BLOB. pはBLOBのプロバイダを示す( `#01` の場合はdatastore, `#02` の場合はSQL) |
| `0xfa` | `clob` | `#fa, p=b(8), s=b(8)` | `p` `s` を big-endian の 64 ビット符号なし整数とみなし、プロバイダを `p` ( `1` の場合は データストア, `2` の場合は SQL 実行エンジン), BLOB 参照を `s` とする CLOB |
| `0xfb` | `blob` | `#fb, p=b(8), s=b(8)` | `p` `s` を big-endian の 64 ビット符号なし整数とみなし、プロバイダを `p` ( `1` の場合は データストア, `2` の場合は SQL 実行エンジン), BLOB 参照を `s` とする BLOB |
| `0xfc` | _reserved_ | `#fc`
| `0xfd` | _reserved_ | `#fd`
| `0xfe` | `end_of_contents` | `#fe` | 値の列の明示的な終端
Expand Down

0 comments on commit a91cb86

Please sign in to comment.