We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee2c20f commit 71a65d6Copy full SHA for 71a65d6
driver/src/main/java/oracle/nosql/driver/ops/WriteMultipleRequest.java
@@ -251,13 +251,15 @@ private String getTopTableName(String tname) {
251
/**
252
* @hidden
253
* Internal use only
254
+ * @return true if the opearations all work on
255
+ * a single table
256
*/
257
public boolean isSingleTable() {
258
if (operations.size() < 2) {
259
return true;
260
}
261
String singleTableName = getTableName();
- for (OperationRequest op : getOperations()) {
262
+ for (OperationRequest op : operations) {
263
if (!singleTableName.equalsIgnoreCase(
264
op.getRequest().getTableName())) {
265
return false;
0 commit comments