Skip to content

Commit

Permalink
misc: Fix typos (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan authored Nov 17, 2024
1 parent d35220b commit d287783
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/blueql/1.overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/blueql/2.ddl.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ DROP SPACE [IF EXISTS] [ALLOW NOT EMPTY] <space_name>
- **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
Expand Down
2 changes: 1 addition & 1 deletion docs/c.architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit d287783

Please sign in to comment.