Commit Graph

81346 Commits

Author SHA1 Message Date
avogar
070fd60b02 Fix parsing queries with FROM INFILE statement 2022-01-11 17:16:54 +03:00
zhongyuankai
7456ed06e6
Delete 02162_auto_format_by_file_extension.sh 2022-01-11 22:02:32 +08:00
zhongyuankai
146068c911 INTO OUTFILE / FROM INFILE: autodetect FORMAT by file extension 2022-01-11 21:52:09 +08:00
zhongyuankai
4ce9f7ac58 INTO OUTFILE / FROM INFILE: autodetect FORMAT by file extension 2022-01-11 21:47:52 +08:00
zhongyuankai
f97250aea9 Merge branch 'master' into auto_format_by_file_extension 2022-01-11 21:41:49 +08:00
zhongyuankai
99279c1443 INTO OUTFILE / FROM INFILE: autodetect FORMAT by file extension 2022-01-11 21:26:14 +08:00
feng lv
bf0a6570c0 Merge branch 'decimal-binary-op' of https://github.com/ucasfl/ClickHouse into decimal-binary-op 2022-01-11 12:28:25 +00:00
feng lv
655cf6c315 fix 2022-01-11 12:27:21 +00:00
hexiaoting
5c847264f7 Fix bug for select from VIEW with format and limit settings 2022-01-11 20:19:41 +08:00
Maksim Kita
35cad3968f
Merge pull request #33513 from kitaisreal/build-with-enable-tests-fix
Build with ENABLE_TESTS fix
2022-01-11 12:41:09 +03:00
Maksim Kita
a9f389d546
Merge pull request #33512 from kitaisreal/h3-funcs-bad-arguments-possible-crash-fix
H3 functions bad arguments possible crash fix
2022-01-11 12:31:57 +03:00
Maksim Kita
9a6cddd64f
Merge pull request #33511 from murfel/patch-2
Specify clang version for CC / CXX bc no symlinks
2022-01-11 12:31:48 +03:00
Maksim Kita
3aeb1279ee IAST QueryKind style fix 2022-01-11 12:31:26 +03:00
Kseniia Sumarokova
6587cd0ec6
Merge pull request #33231 from kssenii/settings-changes-with-named-conf
Pass settings as key value or config for storage with settings
2022-01-11 12:30:41 +03:00
Maksim Kita
c1ec85d87a Build with ENABLE_TESTS fix 2022-01-11 12:30:40 +03:00
Kruglov Pavel
94cb98df28
Merge pull request #33177 from kssenii/materialized-postgresql-better-startup
materialized postgresql better startup
2022-01-11 12:18:29 +03:00
Kruglov Pavel
eb65175b6b
Merge pull request #33504 from ClickHouse/fix_nested_lc_default
Fix insert into defalut nested LowCardinality column.
2022-01-11 12:15:27 +03:00
Maksim Kita
8aa930b52f
Merge pull request #33294 from ClickHouse/query-kind-concurent_restriction
Add IAST::QueryKind enum and use it in query limiter
2022-01-11 11:23:18 +03:00
Maksim Kita
ca5e08cef6 H3 functions bad arguments possible crash fix 2022-01-11 11:21:56 +03:00
mergify[bot]
cb556aa860
Merge branch 'master' into patch-2 2022-01-11 08:14:03 +00:00
Maksim Kita
62babe928a
Merge pull request #33510 from bharatnc/ncb/h3-misc-minor-fixes
fix variable name in h3 misc funcs
2022-01-11 10:48:44 +03:00
Natasha Murashkina
7b7eec6141
Specify clang version for CC / CXX bc no symlinks
The proposed script for installing clang (sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)) doesn't automatically create symlinks from clang-XX to clang. Thus we need to either specify the version like clang-13 or instruct the user to create symlinks. I think the former is easier.
2022-01-11 10:24:09 +03:00
bharatnc
01f9370d6e fix variable name in h3 misc funcs 2022-01-10 22:41:41 -08:00
kssenii
2faad57dd3 More tests 2022-01-11 01:58:05 +03:00
Maksim Kita
4ddac56787
Merge pull request #33479 from bharatnc/ncb/h3-misc-funcs
add h3 misc functions - part 1
2022-01-10 23:44:42 +03:00
Maksim Kita
a7f4d1f6fc
Merge pull request #33496 from zxypetre/master
Fix for zh
2022-01-10 23:43:12 +03:00
mergify[bot]
ef36176b2b
Merge branch 'master' into master 2022-01-10 20:14:35 +00:00
Maksim Kita
8465de9a4e
Merge pull request #33482 from zhongyuankai/materialized_view_support_virtual_column
Materialized view support virtual column
2022-01-10 23:13:31 +03:00
Maksim Kita
22b614857d
Merge pull request #33383 from stigsb/explain-ast-alter-command-names
Print alter command names in EXPLAIN AST
2022-01-10 23:13:18 +03:00
Mikhail f. Shiryaev
1cf46f378f
Merge pull request #33494 from msaf1980/rollup_rules_type
GraphiteMergeTree Rollup rules type
2022-01-10 20:53:20 +01:00
Azat Khuzhin
cb70544dfe Move LockMemoryExceptionInThread and MemoryTrackerBlockerInThread 2022-01-10 22:39:10 +03:00
Azat Khuzhin
c1dea66907 Move TraceCollector into Interpreters
Since now it relies on SystemLog that is in Interpreters, and it cannot
be moved into Common, since it has lots of dependencies.
2022-01-10 22:35:42 +03:00
Azat Khuzhin
aee034a597 Use explicit template instantiation for SystemLog
- Move some code into module part to avoid dependency from IStorage in SystemLog
- Remove extra headers from SystemLog.h
- Rewrite some code that was relying on headers that was included by SystemLog.h

v2: rebase
v3: squash move into module part with explicit template instantiation
    (to make each commit self compilable after rebase)
2022-01-10 22:01:41 +03:00
Azat Khuzhin
30e0df1e8c Forward declaration of IStorage in InterpreterWatchQuery 2022-01-10 22:01:41 +03:00
Nikolai Kochetov
776bb0b02c Fix insert into defalut nested LowCardinality column. 2022-01-10 21:30:28 +03:00
Mikhail f. Shiryaev
d35ad19135
Fix review points 2022-01-10 18:23:17 +01:00
Vitaly Baranov
5528ddc545
Update AccessControl.cpp
Tabs are not allowed, replaced with spaces
2022-01-10 23:31:11 +07:00
mergify[bot]
5857667453
Merge branch 'master' into materialized_view_support_virtual_column 2022-01-10 16:25:46 +00:00
mergify[bot]
4fd5884698
Merge branch 'master' into grant_bug_fixed 2022-01-10 16:17:57 +00:00
tavplubix
c514067377
Merge pull request #33287 from benbiti/translate_docs_zh
[Docs]Translate system.tables asynchronous_metric_log into zh
2022-01-10 18:28:37 +03:00
Stig Bakken
d9c86755ba Add functional test 2022-01-10 16:05:52 +01:00
Sergei Trifonov
4cef70c209
Merge pull request #33503 from ClickHouse/serxa/fix-doc-typo
fix typo
2022-01-10 17:06:38 +03:00
Sergei Trifonov
730d49dc69
fix typo 2022-01-10 17:04:22 +03:00
Mikhail f. Shiryaev
a8c83dce14
Use map for QueryKindAmounts 2022-01-10 13:49:53 +01:00
Anton Popov
46b9279d81
Merge pull request #33300 from CurtizJ/support-prewhere-storage-merge
Support `optimize_move_to_prewhere` with storage `Merge`
2022-01-10 15:15:15 +03:00
msaf1980
780a1b2abe graphite: split tagged/plain rollup rules (for merges perfomance) 2022-01-10 16:34:16 +05:00
tavplubix
376709b249
Merge pull request #33305 from nvartolomei/nv/test-odbc
Add test for broken connection
2022-01-10 14:23:38 +03:00
kssenii
669c7bf571 Add one more test 2022-01-10 14:04:18 +03:00
kssenii
21c34ad59b Add support for dictionary source 2022-01-10 14:00:03 +03:00
msirm
474668e32c Fix for zh 2022-01-10 17:56:59 +08:00