jayceslesar commented on issue #2030:
URL: 
https://github.com/apache/iceberg-python/issues/2030#issuecomment-2899052207

   Does the following not work?
   
   ```py
   import pyarrow as pa
   
   schema = pa.schema(
       [
           pa.field("foo", pa.string(), nullable=True),
           pa.field("bar", pa.int32(), nullable=False),
           pa.field("baz", pa.bool_(), nullable=True),
       ]
   )
   
   catalog.create_table(
       identifier="docs_example.bids",
       schema=schema,
   )
   ```
   
   
   via https://py.iceberg.apache.org/api/#create-a-table


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

Reply via email to