Skip to content

Commit 22f489d

Browse files
committed
AUTO: Sync ScalarDB docs in English to docs site repo
1 parent 65bf577 commit 22f489d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

versioned_docs/version-3.13/consensus-commit.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Pessimistic concurrency control (PCC), on the other hand, assumes conflicts are
2929
The OCC protocol of ScalarDB has three phases, as the commonly used OCC protocols, each of which does the following:
3030

3131
* Read phase:
32-
* ScalarDB tracks the read and write sets of transactions. ScalarDB copies every record that a transaction accesses from databases to its local workspace and stores its writes in the workspace.
32+
* ScalarDB tracks the read and write sets of transactions. ScalarDB copies every record that a transaction accesses from databases to its local workspace and stores its writes in the local workspace.
3333
* Validation phase:
3434
* ScalarDB checks if the committing transaction conflicts with other transactions. ScalarDB uses backward validation; it goes to the write phase only if other transactions have not written what the transaction reads and writes, which are called read validation and write validation, respectively.
3535
* Write phase:
@@ -216,7 +216,7 @@ If you take backups from multiple databases or from non-transactional databases,
216216

217217
In the current implementation, ScalarDB throws an exception in the following cases:
218218

219-
* Executing scan operations after write (Put, Insert, Update, Upsert) operations for the same record in a transaction.
219+
* Executing scan operations after write (Put, Insert, Update, Upsert, Delete) operations for the same record in a transaction.
220220
* Executing write (Put, Insert, Update, and Upsert) operations after Delete operations for the same record in a transaction.
221221

222222
## See also

versioned_docs/version-3.13/roadmap.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ If you have a feature request or want to prioritize feature development, please
121121

122122
### CY2026
123123

124-
- ** Audit Logging**
124+
- **Audit logging**
125125
- Users will be able to view and manage the access logs of ScalarDB Cluster and Analytics, mainly for auditing purposes.
126126
- **Stored procedures**
127127
- Users will be able to define stored procedures so that they can execute a set of operations with a complex logic inside ScalarDB Cluster.
@@ -130,6 +130,6 @@ If you have a feature request or want to prioritize feature development, please
130130
- **User-defined functions (UDFs)**
131131
- Users will be able to define functions so that they can use functions in SQLs to express complex logic in a simpler way.
132132
- **Addition of SQL operations for sorting**
133-
- Users will be able to issue sorting (ORDER BY) operations in ScalarDB SQL.
133+
- Users will be able to issue arbitrary sorting (ORDER BY) operations in ScalarDB SQL for multiple or non-JDBC databases. (Currently, ScalarDB can issue sorting operations using clustering keys or arbitrary sorting operations for single JDBC databases.)
134134
- **Addition of more data types**
135135
- Users will be able to use complex data types, such as JSON.

0 commit comments

Comments
 (0)