mirror of
https://github.com/NixOS/nix.git
synced 2025-11-13 22:12:43 +01:00
Rename ReadOnly to Immutable and clarify its purpose.
This commit is contained in:
parent
aa376f4ab1
commit
b1a7b26eef
3 changed files with 9 additions and 7 deletions
|
|
@ -23,10 +23,13 @@ enum class SQLiteOpenMode {
|
|||
*/
|
||||
NoCreate,
|
||||
/**
|
||||
* Open the database in read-only mode.
|
||||
* Open the database in immutable mode.
|
||||
* In addition to the database being read-only,
|
||||
* no wal or journal files will be created by sqlite.
|
||||
* Use this mode if the database is on a read-only filesystem.
|
||||
* Fails with an error if the database does not exist.
|
||||
*/
|
||||
ReadOnly
|
||||
Immutable
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue