Skip to content

Commit

Permalink
Update KuduDynamicTableSource.java
Browse files Browse the repository at this point in the history
  • Loading branch information
collabH committed Aug 19, 2021
1 parent fe7607b commit 678d4bc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class KuduDynamicTableSource implements ScanTableSource, SupportsProjecti

private static final Logger LOG = LoggerFactory.getLogger(KuduDynamicTableSource.class);

private final KuduReaderConfig.Builder configBuilder;
private KuduReaderConfig.Builder configBuilder;
private final KuduTableInfo tableInfo;
private TableSchema physicalSchema;
private final String[] projectedFields;
Expand Down Expand Up @@ -157,7 +157,7 @@ public int hashCode() {

@Override
public void applyLimit(long limit) {
configBuilder.setRowLimit((int) limit);
this.configBuilder=this.configBuilder.setRowLimit((int) limit);
}

@Override
Expand Down

0 comments on commit 678d4bc

Please sign in to comment.