stevenzwu commented on code in PR #9695:
URL: https://github.com/apache/iceberg/pull/9695#discussion_r1496874140
##########
open-api/rest-catalog-open-api.py:
##########
@@ -905,6 +973,28 @@ class CreateTableRequest(BaseModel):
properties: Optional[Dict[str, str]] = None
+class PlanContext(BaseModel):
+ select: List[str] = Field(..., description='A list of the selected
columns')
+ project: Optional[List[str]] = Field(None, description='A list of the
projections')
+ filter: Optional[Expression] = None
+ options: Dict[str, str]
+ snapshot_id: Optional[int] = Field(None, alias='snapshot-id')
+ from_snapshot_id: Optional[int] = Field(None, alias='from-snapshot-id')
Review Comment:
meaning if the from snapshot is included or excluded in the increment scan
of (from, to)
--
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]