ericseguin-northstar commented on issue #669:
URL: https://github.com/apache/iceberg-go/issues/669#issuecomment-3721158259

   For completeness, here's the output of `SHOW CREATE TABLE` with Trino:
   
   ```
   trino:public> show create table my_table;
                                             Create Table                       
                    
   
-------------------------------------------------------------------------------------------------
    CREATE TABLE my_catalog.public.my_table (                                   
          
       date timestamp(6) NOT NULL,                                              
                    
       my_map map(varchar, varchar) NOT NULL                                    
                    
    )                                                                           
                    
    WITH (                                                                      
                    
       format = 'PARQUET',                                                      
                    
       format_version = 2,                                                      
                    
       location = 
's3://my_bucket/public/my_table_ffe70918-14b0-47eb-8bf6-c1e5cb661e3d', 
       max_commit_retry = 4,                                                    
                    
       partitioning = ARRAY['day(date)']                                        
                    
    )                                                                           
                    
   (1 row)
   ```


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