Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
albertobastos committed Jan 21, 2025
1 parent 116c40a commit 946f2f2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import com.google.common.base.Preconditions;
import java.util.Collection;
import java.util.Set;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
import org.apache.calcite.linq4j.tree.Expression;
import org.apache.calcite.rel.type.RelProtoDataType;
Expand Down Expand Up @@ -80,7 +79,8 @@ public Table getTable(String name) {
*/
@Override
public Set<String> getTableNames() {
//return _tableCache.getTableNameMap().keySet().stream().filter(n -> DatabaseUtils.isPartOfDatabase(n, _databaseName))
//return _tableCache.getTableNameMap().keySet().stream()
// .filter(n -> DatabaseUtils.isPartOfDatabase(n, _databaseName))
// .collect(Collectors.toSet());
return _tableCache.getTableNameMap().keySet();
}
Expand Down

0 comments on commit 946f2f2

Please sign in to comment.