aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java
diff options
context:
space:
mode:
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java
index f72cc7c14..787e24389 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/sys/SystemTableScan.java
@@ -51,6 +51,7 @@ public class SystemTableScan extends AbstractGroupScan implements SubScan {
@JsonCreator
public SystemTableScan(@JsonProperty("table") SystemTable table,
@JsonProperty("maxRecordsToRead") int maxRecordsToRead,
+ @JsonProperty("columns") List<SchemaPath> columns,
@JacksonInject StoragePluginRegistry engineRegistry) throws ExecutionSetupException {
this(table, maxRecordsToRead, (SystemTablePlugin) engineRegistry.getPlugin(SystemTablePluginConfig.INSTANCE));
}