Skip to content

Commit

Permalink
Fixed Hbase connector not compiling for Dremio 19.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmannok authored and jduo committed Nov 2, 2021
1 parent d3a691f commit 46ddc36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.dremio.plugin</groupId>
<version>12.0.0-202012212145230282-d8947fd3</version>
<version>19.0.0-202110270341120595-3e3e05e7</version>
<artifactId>dremio-hbase-plugin</artifactId>

<name>Dremio HBase Community Connector</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
package com.dremio.exec.store.hbase;

import java.util.Arrays;
import java.util.List;

import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.filter.BinaryComparator;
Expand All @@ -33,7 +35,6 @@
import com.dremio.common.expression.SchemaPath;
import com.dremio.common.expression.visitors.AbstractExprVisitor;
import com.google.common.base.Charsets;
import com.google.common.collect.ImmutableList;

public class HBaseFilterBuilder extends AbstractExprVisitor<HBaseScanSpec, Void, RuntimeException> implements HBaseConstants {

Expand Down Expand Up @@ -84,7 +85,7 @@ public HBaseScanSpec visitBooleanOperator(BooleanOperator op, Void value) {
public HBaseScanSpec visitFunctionCall(FunctionCall call, Void value) {
HBaseScanSpec nodeScanSpec = null;
String functionName = call.getName();
ImmutableList<LogicalExpression> args = call.args;
List<LogicalExpression> args = call.args;

if (CompareFunctionsProcessor.isCompareFunction(functionName)) {
CompareFunctionsProcessor processor = CompareFunctionsProcessor.process(call);
Expand Down

0 comments on commit 46ddc36

Please sign in to comment.