docs: quote CQL keywords

this "misspelling" was identified by codespell. actually, it's not
quite a misspelling, as "UPDATE" and "INSERT" are keywords in CQL.
so we intended to emaphasis them, so to make codespell more useful,
and to preserve the intention, let's quote the keywords with backticks.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#17391
This commit is contained in:
Kefu Chai
2024-02-19 13:22:15 +08:00
committed by Botond Dénes
parent 7e9b0d3d9e
commit 1519904fb9

View File

@@ -30,8 +30,8 @@ and the one that was written at a later time prevails.
Finally, if both cells are live and have no expiration, or have the same expiration time and time-to-live,
the cell with the lexicographically bigger value prevails.
Note that when multiple columns are INSERTed or UPDATEed using the same timestamp,
SELECTing those columns might return a result that mixes cells from either upsert.
Note that when multiple columns are `INSERT`ed or `UPDATE`ed using the same timestamp,
`SELECT`ing those columns might return a result that mixes cells from either upsert.
This may happen when both upserts have no expiration time, or both their expiration time and TTL are the
same, respectively (in whole second resolution). In such a case, cell selection would be based on the cell values
in each column, independently of each other.