本文整理了Java中com.datastax.driver.core.querybuilder.Select.maybeAddRoutingKey()
方法的一些代码示例,展示了Select.maybeAddRoutingKey()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Select.maybeAddRoutingKey()
方法的具体详情如下:
包路径:com.datastax.driver.core.querybuilder.Select
类名称:Select
方法名:maybeAddRoutingKey
暂无
代码示例来源:origin: com.datastax.cassandra/cassandra-driver-core
/**
* Adds the provided clause to this {@code WHERE} clause.
*
* @param clause the clause to add.
* @return this {@code WHERE} clause.
*/
public Where and(Clause clause) {
clauses.add(clause);
statement.maybeAddRoutingKey(clause.name(), clause.firstValue());
checkForBindMarkers(clause);
return this;
}
代码示例来源:origin: com.stratio.cassandra/cassandra-driver-core
/**
* Adds the provided clause to this WHERE clause.
*
* @param clause the clause to add.
* @return this WHERE clause.
*/
public Where and(Clause clause) {
clauses.add(clause);
statement.maybeAddRoutingKey(clause.name(), clause.firstValue());
checkForBindMarkers(clause);
return this;
}
代码示例来源:origin: com.yugabyte/cassandra-driver-core
/**
* Adds the provided clause to this WHERE clause.
*
* @param clause the clause to add.
* @return this WHERE clause.
*/
public Where and(Clause clause) {
clauses.add(clause);
statement.maybeAddRoutingKey(clause.name(), clause.firstValue());
checkForBindMarkers(clause);
return this;
}
代码示例来源:origin: com.facebook.presto.cassandra/cassandra-driver
/**
* Adds the provided clause to this WHERE clause.
*
* @param clause the clause to add.
* @return this WHERE clause.
*/
public Where and(Clause clause) {
clauses.add(clause);
statement.maybeAddRoutingKey(clause.name(), clause.firstValue());
checkForBindMarkers(clause);
return this;
}
代码示例来源:origin: io.prestosql.cassandra/cassandra-driver
/**
* Adds the provided clause to this WHERE clause.
*
* @param clause the clause to add.
* @return this WHERE clause.
*/
public Where and(Clause clause) {
clauses.add(clause);
statement.maybeAddRoutingKey(clause.name(), clause.firstValue());
checkForBindMarkers(clause);
return this;
}
内容来源于网络,如有侵权,请联系作者删除!