Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* <p>
* This maintains metadata in a "metadata" folder under the table location.
*/
class HadoopTableOperations implements TableOperations {
public class HadoopTableOperations implements TableOperations {
private static final Logger LOG = LoggerFactory.getLogger(HadoopTableOperations.class);

private final Configuration conf;
Expand All @@ -54,7 +54,7 @@ class HadoopTableOperations implements TableOperations {
private Integer version = null;
private boolean shouldRefresh = true;

HadoopTableOperations(Path location, Configuration conf) {
protected HadoopTableOperations(Path location, Configuration conf) {
this.conf = conf;
this.location = location;
}
Expand Down