This is an automated email from the ASF dual-hosted git repository.

russellspitzer 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 e01084ed83 Spec: Typo - Column position is actually pos (#6458)
e01084ed83 is described below

commit e01084ed83316768a3d8996c9034c1b7e46a57c2
Author: Frank Wessels <[email protected]>
AuthorDate: Tue Dec 20 07:06:55 2022 -0800

    Spec: Typo - Column position is actually pos (#6458)
---
 format/spec.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/format/spec.md b/format/spec.md
index ec19b185fb..58cfc22911 100644
--- a/format/spec.md
+++ b/format/spec.md
@@ -777,10 +777,10 @@ When the deleted row column is present, its schema may be 
any subset of the tabl
 
 To ensure the accuracy of statistics, all delete entries must include row 
values, or the column must be omitted (this is why the column type is 
`required`).
 
-The rows in the delete file must be sorted by `file_path` then `position` to 
optimize filtering rows while scanning. 
+The rows in the delete file must be sorted by `file_path` then `pos` to 
optimize filtering rows while scanning. 
 
 *  Sorting by `file_path` allows filter pushdown by file in columnar storage 
formats.
-*  Sorting by `position` allows filtering rows while scanning, to avoid 
keeping deletes in memory.
+*  Sorting by `pos` allows filtering rows while scanning, to avoid keeping 
deletes in memory.
 
 #### Equality Delete Files
 

Reply via email to