mirror of
https://github.com/aljazceru/turso.git
synced 2026-02-07 09:14:26 +01:00
core/translate: Replace todo with bail_parse_error
No point in crashing the whole app if someone attempts to change page size.
This commit is contained in:
@@ -160,7 +160,7 @@ fn update_pragma(
|
||||
unreachable!();
|
||||
}
|
||||
PragmaName::PageSize => {
|
||||
todo!("updating page_size is not yet implemented")
|
||||
bail_parse_error!("Updating database page size is not supported.");
|
||||
}
|
||||
PragmaName::AutoVacuum => {
|
||||
let auto_vacuum_mode = match value {
|
||||
|
||||
Reference in New Issue
Block a user