rahil-c commented on code in PR #9695: URL: https://github.com/apache/iceberg/pull/9695#discussion_r1492845781
########## 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: Not sure what you mean can you elaborate more on this? -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org