This is an automated email from the ASF dual-hosted git repository.
dweeks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new a2c0e13e2d Fix type of fields list in Puffin (#5087)
a2c0e13e2d is described below
commit a2c0e13e2ddd4b939760ccf550986293f4620924
Author: Piotr Findeisen <[email protected]>
AuthorDate: Mon Jun 20 17:44:28 2022 +0200
Fix type of fields list in Puffin (#5087)
---
format/puffin-spec.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/format/puffin-spec.md b/format/puffin-spec.md
index 186f79c787..334cc1ebfc 100644
--- a/format/puffin-spec.md
+++ b/format/puffin-spec.md
@@ -101,7 +101,7 @@ with content size present), UTF-8 encoded JSON payload
representing a single
| Field Name | Field Type | Required |
Description |
|-------------------|-----------------------------------------|----------|
----------- |
| type | JSON string | yes | See
[Blob types](#blob-types)
-| fields | list of JSON long | yes |
List of field IDs the blob was computed for; the order of items is used to
compute sketches stored in the blob.
+| fields | JSON list of ints | yes |
List of field IDs the blob was computed for; the order of items is used to
compute sketches stored in the blob.
| offset | JSON long | yes | The
offset in the file where the blob contents start
| length | JSON long | yes | The
length of the blob stored in the file (after compression, if compressed)
| compression-codec | JSON string | no | See
[Compression codecs](#compression-codecs). If omitted, the data is assumed to
be uncompressed.