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:
Pekka Enberg
2025-06-27 13:42:49 +03:00
parent a87f294f24
commit 09ba89e2ba

View File

@@ -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 {