RussellSpitzer commented on a change in pull request #2398:
URL: https://github.com/apache/iceberg/pull/2398#discussion_r605244537
##########
File path: core/src/main/java/org/apache/iceberg/BaseMetadataTable.java
##########
@@ -37,8 +37,30 @@
abstract class BaseMetadataTable implements Table, Serializable {
private final PartitionSpec spec = PartitionSpec.unpartitioned();
private final SortOrder sortOrder = SortOrder.unsorted();
+ private final TableOperations ops;
+ private final Table table;
+ private final String name;
- abstract Table table();
+ protected BaseMetadataTable(TableOperations ops, Table table, String name) {
Review comment:
I can also understand if we don't ops protected and not public
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]