Azat Khuzhin
3661769e1b
Remove some absolute changes for errorCodeToName/system.errors
2020-10-30 09:04:22 +03:00
Azat Khuzhin
ce9897bfd8
Fix readability-container-size-empty in StorageSystemErrors.cpp
2020-10-30 00:07:40 +03:00
Azat Khuzhin
0cd79de632
Eliminate extra strlen() in errorCodeToName()
2020-10-29 21:53:09 +03:00
Azat Khuzhin
cb50886ef1
Fix ErrorCodes increment on error
2020-10-29 21:24:52 +03:00
Azat Khuzhin
04bff595d3
Make check-style happy (by not using DB::ErrorCodes:: in comments)
2020-10-29 21:10:20 +03:00
Azat Khuzhin
7e79769ae4
Fix readability-inconsistent-declaration-parameter-name in ErrorCodes.h
2020-10-29 21:08:09 +03:00
Azat Khuzhin
b42f77a791
Covert error codes list to lookup table and drop generation of them.
2020-10-29 10:55:41 +03:00
Azat Khuzhin
b7eac807f5
Fix readability-qualified-auto in errorCodeToName()
2020-10-29 10:55:41 +03:00
Azat Khuzhin
a81b0418ac
Make errorCodeToName() return LowCardinality(String)
2020-10-29 10:55:41 +03:00
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
Azat Khuzhin
3fb8d08dd4
Add errorCodeToName() function
...
This patch adds errorCode() function that will return macro name by the
exception code, useful for analyzing query_log and similar.
Later some descriptions can be added.
v2: replace hana::map/fusion::vector with external script
v3:
- use binary cmake dir for .sh
- use jump table over suboptimal std::unordered_map (with very poor hash
function for int -- std::hash)
- cleanup errorCodeToName (drop extra templates and headers)
- rename errorCode -> errorCodeToName
- fix arcadia build (by not providing those helpers there)
- fix build on CI, by using CMAKE_CXX_COMPILER for parsing the file
2020-10-29 10:55:00 +03:00
robot-clickhouse
745cb4ab2f
Update version_date.tsv after release 20.8.5.45
2020-10-29 09:57:42 +03:00
alexey-milovidov
ae4d66ac9d
Merge pull request #16047 from ClickHouse/suggest-destruction-order
...
Fix destruction order of Suggest #16035
2020-10-29 09:10:23 +03:00
alexey-milovidov
0faf2bc7e3
Merge pull request #16332 from ClickHouse/fix-queue-processing-of-very-large-entries
...
Fix processing of very large entries in queue
2020-10-29 09:09:29 +03:00
alexey-milovidov
d46cf39f3b
Merge pull request #16485 from ClickHouse/cmake-remove-trash
...
Remove trash from CMakeLists
2020-10-29 04:41:04 +03:00
alexey-milovidov
bf3acecf6f
Merge pull request #16032 from Avogar/mysql_bug
...
Don't touch MySQL database if it's unnecessary
2020-10-29 04:14:26 +03:00
alexey-milovidov
92d0e1a8c9
Merge pull request #16479 from filimonov/docker-alpine
...
docker: clickhouse-server on the top of alpine
2020-10-29 04:13:47 +03:00
robot-clickhouse
e094b001d3
Update version_date.tsv after release 20.9.4.76
2020-10-29 02:01:30 +03:00
robot-clickhouse
5531bbdc98
Update version_date.tsv after release 20.10.3.30
2020-10-29 01:21:32 +03:00
Kruglov Pavel
6eaba28e01
Trigger CI
2020-10-28 22:44:37 +03:00
alesapin
57c3935a26
Merge pull request #16426 from kssenii/rabbit-optimize
...
Optimize rabbitmq engine
2020-10-28 22:24:22 +03:00
Alexey Milovidov
885bd84720
Remove trash from CMakeLists
2020-10-28 20:48:02 +03:00
alexey-milovidov
db0dddb0d3
Merge pull request #16480 from ClickHouse/docs-clearer-notes-about-max-block-size
...
Update other-functions.md
2020-10-28 20:33:43 +03:00
tavplubix
a1f1db753b
Update CompressedReadBufferBase.cpp
2020-10-28 18:23:10 +03:00
alesapin
69b9190708
Merge pull request #16266 from ClickHouse/fix_flacky_test_multiple_disks
...
Add missing __init__.py
2020-10-28 18:18:19 +03:00
filimonov
2d28d97233
Update other-functions.md
2020-10-28 15:13:27 +01:00
Mikhail Filimonov
d126024248
Docker alpine build
2020-10-28 13:58:38 +01:00
alesapin
9830ff1003
Merge pull request #16094 from nvartolomei/nv/wal-metadata-compatibility
...
RFC: Add metadata section to MergeTreeWriteAheadLog
2020-10-28 15:54:46 +03:00
alesapin
8e8bdeb5d7
Merge pull request #16434 from ClickHouse/fix_fake_race_on_merges_list
...
Fix fake race condition on system.merges merge_algorithm
2020-10-28 15:51:53 +03:00
alesapin
cd05cab09d
Merge pull request #16455 from den-crane/test/bug_14144
...
test for #14144
2020-10-28 14:55:15 +03:00
tavplubix
cd70dc82cd
Merge pull request #16409 from azat/drop-distributed-fix
...
Fix DROP TABLE for Distributed (racy with INSERT)
2020-10-28 14:10:32 +03:00
alesapin
3c31a5134e
Fix bug
2020-10-28 14:03:26 +03:00
tavplubix
4a63f1271b
Merge pull request #16244 from ClickHouse/fix_race_data_parts_exchange_endpoint
...
Fix race on StorageReplicatedMergeTree::data_parts_exchange_endpoint
2020-10-28 13:25:55 +03:00
Alexander Tokmakov
ff68670029
add missing __init__.py
2020-10-28 13:22:10 +03:00
tavplubix
22847613d1
Merge pull request #16437 from ClickHouse/addition_to_16127
...
Addition to #16127
2020-10-28 13:03:13 +03:00
alesapin
c10370f98d
Merge branch 'master' into fix-queue-processing-of-very-large-entries
2020-10-28 11:19:34 +03:00
alesapin
8a6be1602b
Merge pull request #16364 from ClickHouse/fix_uuid_mapping_exists
...
Minor improvements in DatabaseCatalog
2020-10-28 10:54:39 +03:00
alesapin
617e42ddb4
Merge branch 'master' into rabbit-optimize
2020-10-28 10:24:05 +03:00
alesapin
2b26cbbc97
Add missed file
2020-10-28 10:01:57 +03:00
alexey-milovidov
0cb377da6e
Merge pull request #16452 from ClickHouse/fuzz-cast
...
Add a test for #13342
2020-10-28 09:26:19 +03:00
alexey-milovidov
7c4b0e559d
Merge pull request #16453 from ClickHouse/fuzz-countEqual
...
Add a test for #13893
2020-10-28 09:26:03 +03:00
alexey-milovidov
6667261b02
Merge pull request #16454 from ClickHouse/fuzz-aggregate-desc
...
Add a test for #15540
2020-10-28 09:25:44 +03:00
alexey-milovidov
512dddb2b8
Merge pull request #16445 from ClickHouse/fuzz-lambda-array-join
...
Added a test for #11364
2020-10-28 09:24:57 +03:00
alexey-milovidov
df828a6a6c
Merge pull request #16410 from ClickHouse/fix-quantile-deterministic
...
Fix debug assertion in quantileDeterministic function.
2020-10-28 09:24:46 +03:00
alexey-milovidov
8951c9b0c7
Merge pull request #16439 from den-crane/test/bug_13492
...
test for bug_13492
2020-10-28 09:24:30 +03:00
Alexander Kuzmenkov
ba34145817
Merge pull request #16425 from filimonov/minumum
...
Fix typos reported by codespell
2020-10-28 08:07:18 +03:00
Denis Zhuravlev
62e7e0637f
test for #14144
2020-10-27 23:34:19 -03:00
alexey-milovidov
974e5ca6d6
Merge pull request #16440 from vzakaznikov/fix_ldap_tests_by_grabbing_log_size_after_container_is_stopped
...
Fix LDAP tests by grabbing log size after container is stopped
2020-10-28 04:49:59 +03:00
Alexey Milovidov
b767efd889
Add a test for #15540
2020-10-28 04:35:40 +03:00
Alexey Milovidov
81cd172af1
Add a test for #13893
2020-10-28 04:31:47 +03:00