You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -33,3 +33,5 @@ select * from iceberg.public.orders;
\\q
CREATE EXTERNAL TABLE iceberg.public.orders (\n id BIGINT NOT NULL,\n order_date DATE NOT NULL,\n customer_id INTEGER NOT NULL,\n total_price DOUBLE NOT NULL\n)\nSTORED AS ICEBERG\nPARTITIONED BY ( "identity(customer_id) ")\nLOCATION 's3://iceberg/orders';