From d287783331e8ea5697150b189262270788663298 Mon Sep 17 00:00:00 2001 From: Sayan Date: Sun, 17 Nov 2024 16:09:48 +0530 Subject: [PATCH] misc: Fix typos (#126) --- docs/blueql/1.overview.md | 4 ++-- docs/blueql/2.ddl.md | 2 +- docs/c.architecture.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/blueql/1.overview.md b/docs/blueql/1.overview.md index ff3d3c030..fe9704942 100644 --- a/docs/blueql/1.overview.md +++ b/docs/blueql/1.overview.md @@ -125,7 +125,7 @@ You are required to parameterize the query like this: ```rust use skytable::query; -let query = query!("insert into myspace.mymode(?, ?, [?])", "sayan", "pass123", "myfirstnote") +let query = query!("insert into myspace.mymodel(?, ?, [?])", "sayan", "pass123", "myfirstnote") ``` If you try to run it without any parameters (don't forget that `skysh` automatically parameterizes for convenience) the query @@ -174,7 +174,7 @@ Queries include: - `INSERT INTO myspace.mymodel(...)` - `SELECT col1, ... FROM myspace.mymodel WHERE ...` - `UPDATE myspace.mymodel SET counter += 1 WHERE ...` -- `DELETE FROM myspace.mymode WHERE ...` +- `DELETE FROM myspace.mymodel WHERE ...` ## DCL diff --git a/docs/blueql/2.ddl.md b/docs/blueql/2.ddl.md index 0778927ae..9a53e4552 100644 --- a/docs/blueql/2.ddl.md +++ b/docs/blueql/2.ddl.md @@ -101,7 +101,7 @@ DROP SPACE [IF EXISTS] [ALLOW NOT EMPTY] - **Access control**: `root` only - **Operational notes**: - **A non-empty space cannot be dropped** - To avoid catastrophic `DROP`s, a `SPACE` can only be dropped directly if it is non-empty. To drop a non-empty space, you must + To avoid catastrophic `DROP`s, a `SPACE` can only be dropped directly if it is empty. To drop a non-empty space, you must run: ```sql diff --git a/docs/c.architecture.md b/docs/c.architecture.md index 58c15a075..3ba76e0d3 100644 --- a/docs/c.architecture.md +++ b/docs/c.architecture.md @@ -86,7 +86,7 @@ several different storage drivers, using ones appropriate for the task. We do no implement everything in house, engineering them piece by piece. :::info Features on track -At this point, Skytable is primarily in-memory which means that while it uses disk storage for durability, most data is stored in-memory. **This is going to change in the near future as the team is working on building a custom log-based engine.** As you might understand, this is not an everyday task and as we incorporate new ideas it will take some time. But if you're seeing this in 2023, you can expect us to ship something by Q2 2024. +At this point, Skytable is primarily in-memory which means that while it uses disk storage for durability, most data is stored in-memory. **This is going to change in the near future as the team is working on building a custom log-based engine.** As you might understand, this is not an everyday task and as we incorporate new ideas it will take some time. But if you're seeing this in 2024, you can expect us to ship something by early 2025. ::: DDL and DCL transactions use a log-based append-only driver while DML queries use a custom log-based append-only driver that is able to intelligently handle concurrent changes. The team will implement new and updated storage drivers from time to time but you do not have to worry about anything, due to our promise for backwards compatibility (see below).