Skip to content

Commit ff17c0d

Browse files
authored
Update java/working-with-cql/query-execution.md
1 parent defa374 commit ff17c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/working-with-cql/query-execution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ CqnDelete delete = Delete.from("bookshop.Books").byParams("ID");
8181
Map<String, Object> paramSet1 = singletonMap("ID", 101);
8282
Map<String, Object> paramSet1 = singletonMap("ID", 102);
8383

84-
CdsResult<?> result = service.run(query, asList(paramSet1, paramSet2));
84+
Result result = service.run(delete, asList(paramSet1, paramSet2));
8585
long deletedRows = result.rowCount();
8686
```
8787

0 commit comments

Comments
 (0)