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: [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