I am trying to create iceberg table using trino but ddl is not executing stating that sort_order not find .below sample ddl
Create table <tableschema>.test ( C1 datetime,
C2 double ,
C3 double
)
With ( format='parquet',
Location='S3a:// location of file',
Partitioning=ARRAY['day(C1)'],
Sort_order=ARRAY['C2','C3']
)
DDL not executing when I am defining the sort_order for table . Without sort_order table getting created
Can you please help with this is anything I need to modify in DDL . I am using trino-jdbc380.jar for driver to connect