We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent defa374 commit ff17c0dCopy full SHA for ff17c0d
java/working-with-cql/query-execution.md
@@ -81,7 +81,7 @@ CqnDelete delete = Delete.from("bookshop.Books").byParams("ID");
81
Map<String, Object> paramSet1 = singletonMap("ID", 101);
82
Map<String, Object> paramSet1 = singletonMap("ID", 102);
83
84
-CdsResult<?> result = service.run(query, asList(paramSet1, paramSet2));
+Result result = service.run(delete, asList(paramSet1, paramSet2));
85
long deletedRows = result.rowCount();
86
```
87
0 commit comments