You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/preview/dev/internal_errors.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Attempted to access index 3 within vector of size 3
14
14
15
15
> The issue is fixed in DuckDB v1.2.2 and newer versions.
16
16
17
-
After encountering an internal error, DuckDB enters a restricted mode where any further operations will result in the following error message:
17
+
After encountering an internal error, DuckDB enters “restricted mode”, where any further operations will result in the following error message:
18
18
19
19
```console
20
20
FATAL Error:
@@ -24,4 +24,6 @@ The database must be restarted prior to being used again.
24
24
25
25
To continue working with the same database, start a new DuckDB session on the same database.
26
26
27
+
The reason DuckDB enters “restricted mode” is because the database is in an undefined state. Internal errors are by definition bugs that should never happen so the code path is never tested.
28
+
27
29
If you encounter an internal error, please consider creating a minimal reproducible example and submitting an issue to the [DuckDB issue tracker](https://github.com/duckdb/duckdb/issues/new/choose).
0 commit comments