DATACOUCH-632 - Fix compilation error introduced in DATACOUCH-603. (#269)

Co-authored-by: mikereiche <michael.reiche@couchbase.com>
This commit is contained in:
Michael Reiche
2020-10-09 18:04:03 -07:00
committed by GitHub
parent 1b5c32150e
commit ed02ed535e

View File

@@ -277,7 +277,7 @@ public class Query {
final StringBuilder statement = new StringBuilder();
appendString(statement, n1ql.delete); // delete ...
appendWhereString(statement, n1ql.filter); // typeKey = typeValue
appendWhere(statement, null); // criteria on this Query
appendWhere(statement, null, template.getConverter()); // criteria on this Query
appendString(statement, n1ql.returning);
return statement.toString();
}