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

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

Introduction

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

Prototype

String INPUT_CONDITIONS_PROPERTY

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

Click Source Link

Document

WHERE clause in the input SELECT statement

Usage

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

License:Apache License

String getInputConditions() {
    return job.get(DBConfiguration.INPUT_CONDITIONS_PROPERTY);
}

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

License:Apache License

void setInputConditions(String conditions) {
    if (conditions != null && conditions.length() > 0)
        job.set(DBConfiguration.INPUT_CONDITIONS_PROPERTY, conditions);
}