When we have a IcebergS3 table and trying get tables its not listing in the tables list.
Java code to fetch tables:
ResultSet tables = databaseMetaData.getTables(
databaseName,
getEscapedRegex(schemaName) /* schemaPattern */,
getEscapedRegex(tableName) /* tablePattern */,
ImmutableSet.of("TABLE", "VIEW"));