Tishj opened a new issue, #17319:
URL: https://github.com/apache/iceberg/issues/17319

   ### Apache Iceberg version
   
   None
   
   ### Query engine
   
   None
   
   ### Please describe the bug 🐞
   
   The `DataFile` object, returned by the scan-planning API is missing 
`sequence-number`, making it impossible to honor 
`_last_updated_sequence_number` queries with the scan-planning API.
   
   ```yaml
       DataFile:
         allOf:
           - $ref: '#/components/schemas/ContentFile'
         type: object
         required:
           - content
         properties:
           content:
             type: string
             const: "data"
           first-row-id:
             type: integer
             format: int64
             description: "The first row ID assigned to the first row in the 
data file"
           column-sizes:
             allOf:
               - $ref: '#/components/schemas/CountMap'
             description: "Map of column id to total count, including null and 
NaN"
           value-counts:
             allOf:
               - $ref: '#/components/schemas/CountMap'
             description: "Map of column id to null value count"
           null-value-counts:
             allOf:
               - $ref: '#/components/schemas/CountMap'
             description: "Map of column id to null value count"
           nan-value-counts:
             allOf:
               - $ref: '#/components/schemas/CountMap'
             description: "Map of column id to number of NaN values in the 
column"
           lower-bounds:
             allOf:
               - $ref: '#/components/schemas/ValueMap'
             description: "Map of column id to lower bound primitive type 
values"
           upper-bounds:
             allOf:
               - $ref: '#/components/schemas/ValueMap'
             description: "Map of column id to upper bound primitive type 
values"
   ```
   
   Would need an optional:
   ```yaml
           sequence-number:
             type: integer
             format: int64
             description: "The sequence number assigned to the manifest entry 
or manifest file that this data file belongs to"
   ```
   
   ### Willingness to contribute
   
   - [ ] I can contribute a fix for this bug independently
   - [ ] I would be willing to contribute a fix for this bug with guidance from 
the Iceberg community
   - [ ] I cannot contribute a fix for this bug at this time


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to