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.