rdblue opened a new issue #281: Add partition spec evolution to Table API URL: https://github.com/apache/incubator-iceberg/issues/281 Tables currently support schema evolution using [`updateSchema()`](http://iceberg.apache.org/javadoc/master/index.html?org/apache/iceberg/UpdateSchema.html): ```java table.updateSchema() .addColumn("a", Types.IntegerType.get()) .commit() ``` Iceberg should support a similar API for evolving a partition spec, which is currently a manual operation.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
