gabeiglio opened a new pull request, #14089: URL: https://github.com/apache/iceberg/pull/14089
To replicate this issue run the following spark queries: ```sql CREATE TABLE ns.barfoo (dateint INT,hour INT, data STRING) USING iceberg PARTITIONED BY (dateint, hour); INSERT INTO ns.barfoo (dateint, hour, data) VALUES (20250101, 1, 'a'), (20250102, 1, 'a'), (20250102, 2, 'a'); ALTER TABLE ns.barfoo DROP PARTITION FIELD dateint; ALTER TABLE ns.barfoo DROP COLUMN dateint; SELECT * FROM ns.barfoo.files; ``` -- 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]
