From 0e7bd24f5c7e17ef8db3e5613d0889e7277a93ab Mon Sep 17 00:00:00 2001 From: vsricharan16 Date: Sat, 20 Jan 2024 03:17:15 +0000 Subject: [PATCH] Fix typo in UNLOGGED BATCH section of CQL DML page patch by V Sri Charan Reddy ; reviewed by Erick Ramirez for CASSANDRA-17846 --- doc/modules/cassandra/pages/developing/cql/dml.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/modules/cassandra/pages/developing/cql/dml.adoc b/doc/modules/cassandra/pages/developing/cql/dml.adoc index ef76cdbb38..674ede8145 100644 --- a/doc/modules/cassandra/pages/developing/cql/dml.adoc +++ b/doc/modules/cassandra/pages/developing/cql/dml.adoc @@ -456,7 +456,7 @@ only isolated within a single partition). There is a performance penalty for batch atomicity when a batch spans multiple partitions. If you do not want to incur this penalty, you can tell Cassandra to skip the batchlog with the `UNLOGGED` option. If the -`UNLOGGED` option is used, a failed batch might leave the patch only +`UNLOGGED` option is used, a failed batch might leave the batch only partly applied. === `COUNTER` batches