Example usage for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_QUERY

List of usage examples for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_QUERY

Introduction

In this page you can find the example usage for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_QUERY.

Prototype

String INPUT_QUERY

To view the source code for org.apache.hadoop.mapred.lib.db DBConfiguration INPUT_QUERY.

Click Source Link

Document

Whole input query, exluding LIMIT...OFFSET

Usage

From source file:infinidb.hadoop.db.InfiniDBConfiguration.java

License:Apache License

String getInputQuery() {
    return job.get(DBConfiguration.INPUT_QUERY);
}

From source file:infinidb.hadoop.db.InfiniDBConfiguration.java

License:Apache License

void setInputQuery(String query) {
    if (query != null && query.length() > 0) {
        job.set(DBConfiguration.INPUT_QUERY, query);
    }
}