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

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

Introduction

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

Prototype

String INPUT_ORDER_BY_PROPERTY

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

Click Source Link

Document

ORDER BY clause in the input SELECT statement

Usage

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

License:Apache License

String getInputOrderBy() {
    return job.get(DBConfiguration.INPUT_ORDER_BY_PROPERTY);
}

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

License:Apache License

void setInputOrderBy(String orderby) {
    if (orderby != null && orderby.length() > 0) {
        job.set(DBConfiguration.INPUT_ORDER_BY_PROPERTY, orderby);
    }
}