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
-`code` ([Int32](../../sql-reference/data-types/int-uint.md)) — Code number of the error.
20
20
-`error` ([LowCardinality(String)](../../sql-reference/data-types/string.md)) - Name of the error.
21
-
-`last_error_time` ([DateTime](../../sql-reference/data-types/datetime.md)) — The time when the last error happened.
22
-
-`last_error_message` ([String](../../sql-reference/data-types/string.md)) — Message for the last error.
23
21
-`value` ([UInt64](../../sql-reference/data-types/int-uint.md)) — The number of times this error happened.
24
22
-`remote` ([UInt8](../../sql-reference/data-types/int-uint.md)) — Remote exception (i.e. received during one of the distributed queries).
25
-
-`last_error_query_id` ([String](../../sql-reference/data-types/string.md)) — Id of a query that caused the last error (if available).
26
-
-`last_error_trace` ([Array(UInt64)](../../sql-reference/data-types/array.md)) — A stack trace that represents a list of physical addresses where the called methods are stored.
27
-
-`last_error_symbols` ([Array(LowCardinality(String))](../../sql-reference/data-types/array.md)), If the symbolization is enabled, contains demangled symbol names, corresponding to the `last_error_trace`.
28
-
-`last_error_lines` ([Array(LowCardinality(String))](../../sql-reference/data-types/array.md)), If the symbolization is enabled, contains strings with file names with line numbers, corresponding to the `last_error_trace`.
29
-
30
-
The symbolization can be enabled or disabled in the `symbolize` under `error_log` in the server's configuration file.
Copy file name to clipboardExpand all lines: docs/en/operations/system-tables/errors.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,6 @@ Columns:
21
21
-`last_error_message` ([String](../../sql-reference/data-types/string.md)) — message for the last error.
22
22
-`last_error_trace` ([Array(UInt64)](../../sql-reference/data-types/array.md)) — A [stack trace](https://en.wikipedia.org/wiki/Stack_trace) that represents a list of physical addresses where the called methods are stored.
23
23
-`remote` ([UInt8](../../sql-reference/data-types/int-uint.md)) — remote exception (i.e. received during one of the distributed queries).
24
-
-`last_error_query_id` ([String](../../sql-reference/data-types/string.md)) — Id of a query that caused the last error (if available).
25
-
-`last_error_symbols` ([Array(LowCardinality(String))](../../sql-reference/data-types/array.md)) — Contains demangled symbol names, corresponding to the `last_error_trace`.
26
-
-`last_error_lines` ([Array(LowCardinality(String))](../../sql-reference/data-types/array.md)) — Contains strings with file names with line numbers, corresponding to the `last_error_trace`.
27
24
28
25
:::note
29
26
Counters for some errors may increase during successful query execution. It's not recommended to use this table for server monitoring purposes unless you are sure that corresponding error can not be a false positive.
0 commit comments