shawnding commented on a change in pull request #681: [ISSUE #680] Fix the
listTable in HadoopCatalog
URL: https://github.com/apache/incubator-iceberg/pull/681#discussion_r355244890
##########
File path: core/src/main/java/org/apache/iceberg/hadoop/HadoopCatalog.java
##########
@@ -59,9 +60,12 @@
*/
public class HadoopCatalog extends BaseMetastoreCatalog implements Closeable {
private static final String ICEBERG_HADOOP_WAREHOUSE_BASE =
"iceberg/warehouse";
+ private static final String TABLE_METADATA_FILE_EXTENSION = ".metadata.json";
+ private static final PathFilter TABLE_FILTER = path ->
path.getName().endsWith(TABLE_METADATA_FILE_EXTENSION);
private final Configuration conf;
private String warehouseLocation;
+
Review comment:
ok removed
----------------------------------------------------------------
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]