rqlite
rqlite copied to clipboard
The lightweight, distributed relational database built on SQLite.
https://github.com/rqlite/rqlite/issues/1922
I saw the store layer already have some implementations like `waitForCommitIndex`, `waitForFSM`, etc But, currently, if the strong read request would be reject by follower and maybe(I guess) tell the...
Focus on happy path first, all needs to be unit tested. Locking and optimization can come later.
Closes #2088. Notes: - RQLITE_HOST should be in the format [scheme:]//host[:port] This is the format expected by the [net/url](https://pkg.go.dev/net/url#URL) package
When performing JOIN queries with `SELECT *`, the resulting columns array now includes table-qualified column names to resolve ambiguity. **Before this change:** ```sql SELECT * FROM contacts JOIN titles ON...
The `SwappableDB.Swap()` function previously deleted the original database files immediately before attempting to open the new database. If the swap operation failed for any reason (e.g., corrupted file, permission issues,...