Updating the plugin version to 1.4.0-SNAPSHOT and fixing for interface change.
Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/3a3c956d Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/3a3c956d Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/3a3c956d Branch: refs/heads/master Commit: 3a3c956d95e0636d07dc08f4cfb46e0324f378d6 Parents: 9bd6524 Author: Aditya <adi...@mapr.com> Authored: Thu Dec 3 11:54:17 2015 -0800 Committer: Aditya Kishore <a...@apache.org> Committed: Fri Sep 9 10:08:30 2016 -0700 ---------------------------------------------------------------------- contrib/format-maprdb/pom.xml | 2 +- .../org/apache/drill/exec/store/maprdb/MapRDBFormatPlugin.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/3a3c956d/contrib/format-maprdb/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/format-maprdb/pom.xml b/contrib/format-maprdb/pom.xml index e8a7b75..4c6770b 100644 --- a/contrib/format-maprdb/pom.xml +++ b/contrib/format-maprdb/pom.xml @@ -21,7 +21,7 @@ <parent> <artifactId>drill-contrib-parent</artifactId> <groupId>org.apache.drill.contrib</groupId> - <version>1.3.0-SNAPSHOT</version> + <version>1.4.0-SNAPSHOT</version> </parent> <artifactId>drill-storage-maprdb</artifactId> http://git-wip-us.apache.org/repos/asf/drill/blob/3a3c956d/contrib/format-maprdb/src/main/java/org/apache/drill/exec/store/maprdb/MapRDBFormatPlugin.java ---------------------------------------------------------------------- diff --git a/contrib/format-maprdb/src/main/java/org/apache/drill/exec/store/maprdb/MapRDBFormatPlugin.java b/contrib/format-maprdb/src/main/java/org/apache/drill/exec/store/maprdb/MapRDBFormatPlugin.java index 6a10d22..aa91901 100644 --- a/contrib/format-maprdb/src/main/java/org/apache/drill/exec/store/maprdb/MapRDBFormatPlugin.java +++ b/contrib/format-maprdb/src/main/java/org/apache/drill/exec/store/maprdb/MapRDBFormatPlugin.java @@ -105,7 +105,7 @@ public class MapRDBFormatPlugin implements FormatPlugin { @Override public AbstractGroupScan getGroupScan(String userName, FileSelection selection, List<SchemaPath> columns) throws IOException { - List<String> files = selection.getAsFiles(); + List<String> files = selection.getFiles(); assert (files.size() == 1); String tableName = files.get(0); HBaseScanSpec scanSpec = new HBaseScanSpec(tableName);