in src/main/java/org/apache/sling/nosql/couchbase/resourceprovider/impl/CouchbaseNoSqlAdapter.java [177:184]
private void handleQueryError(N1qlQueryResult queryResult) {
if (!queryResult.parseSuccess()) {
throw new RuntimeException("Couchbase query parsing error: " + StringUtils.join(queryResult.errors(), "\n"));
}
if (!queryResult.finalSuccess()) {
throw new RuntimeException("Couchbase query error: " + StringUtils.join(queryResult.errors(), "\n"));
}
}