ClickHouse/docker/test
Azat Khuzhin b2e2322895 Add system.errors table
Contains error codes with number of times they have been triggered.

Columns:

-   `name` ([String](../../sql-reference/data-types/string.md)) — name of the error (`errorCodeToName`).
-   `code` ([Int32](../../sql-reference/data-types/int-uint.md)) — code number of the error.
-   `value` ([UInt64](../../sql-reference/data-types/int-uint.md)) - number of times this error has been happened.

**Example**

``` sql
SELECT *
FROM system.errors
WHERE value > 0
ORDER BY code ASC
LIMIT 1

┌─name─────────────┬─code─┬─value─┐
│ CANNOT_OPEN_FILE │   76 │     1 │
└──────────────────┴──────┴───────┘
2020-10-29 10:55:38 +03:00
..
base Revert "Revert "Write structure of table functions to metadata"" 2020-10-14 15:19:29 +03:00
codebrowser Trying with clang-9 2020-10-05 14:35:23 +03:00
compatibility
coverage Switch docker tests to use test-base 2020-08-27 13:17:17 +03:00
fasttest Add system.errors table 2020-10-29 10:55:38 +03:00
fuzzer Check docker scripts with shellcheck 2020-09-30 20:06:46 +03:00
integration remove warnings in integration tests 2020-10-16 18:27:45 +03:00
performance-comparison Fix typos reported by codespell 2020-10-27 12:04:03 +01:00
pvs Suppress superfluous wget (-nv) output 2020-09-01 10:25:13 +03:00
split_build_smoke_test
stateful Fix options passing to functional tests scripts 2020-10-15 14:56:12 +03:00
stateful_with_coverage Fix options passing to functional tests scripts 2020-10-15 14:56:12 +03:00
stateless Merge branch 'check_flaky_test' of github.com:ClickHouse/ClickHouse into check_flaky_test 2020-10-26 09:23:52 +03:00
stateless_pytest Convert to python3 (#15007) 2020-10-02 19:54:07 +03:00
stateless_unbundled style + docker + tests 2020-10-14 22:43:08 +03:00
stateless_with_coverage Fix options passing to functional tests scripts 2020-10-15 14:56:12 +03:00
stress Update run.sh 2020-10-16 20:31:05 +03:00
style Install codespell 2020-08-16 14:59:16 +03:00
testflows/runner Updating TestFlows to 1.6.59 2020-10-27 18:50:59 -04:00
unit Remove redundant file 2020-09-21 10:41:23 +03:00
Dockerfile Auto version update to [20.11.1.1] [54442] 2020-10-10 18:39:58 +03:00
README.md
test_runner_docker_compose.yaml
test_runner.sh Check docker scripts with shellcheck 2020-09-30 20:06:46 +03:00

ClickHouse Test Docker Image

License

View license information for the software contained in this image.