mergify[bot]
498253eb7b
Merge branch 'master' into fix_create_znode
2021-08-18 08:41:10 +00:00
Vitaly Baranov
fd33f2a2fe
Merge pull request #27426 from aiven/kmichel-replicated-access-storage
...
ZooKeeper replication for users, roles, row policies, quotas and profiles.
2021-08-18 10:37:25 +03:00
小路
5d3237c680
Update test.py
2021-08-18 10:56:05 +08:00
zhangxiao871
861776b8fe
check genuine_throw and fake_throw are True.
2021-08-18 10:40:04 +08:00
zhangxiao871
f34787838a
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into fix_create_znode
2021-08-18 10:37:49 +08:00
alexey-milovidov
eb3bbdfab5
Merge pull request #27680 from ClickHouse/decimal-no-trailing-zeros
...
Remove trailing zeros from Decimal serialization #15794
2021-08-18 05:24:13 +03:00
Kevin Michel
e33a2bf7bc
Add ReplicatedAccessStorage
...
This stores Access Entities in ZooKeeper and replicates them across an entire cluster.
This can be enabled by using the following configuration :
<user_directories>
<replicated>
<zookeeper_path>/clickhouse/access/</zookeeper_path>
</replicated>
</user_directories>
2021-08-18 00:00:18 +02:00
Alexey Milovidov
0b7f6c008a
Update test
2021-08-16 11:10:59 +03:00
Alexey Milovidov
28027c7323
Fix some tests
2021-08-16 05:00:39 +03:00
Vitaly Baranov
178d0f9ba9
Fix checking GRANT OPTION while executing GRANT with REPLACE OPTION.
2021-08-15 16:20:05 +03:00
mergify[bot]
f7d3c8b554
Merge branch 'master' into feature/enable_part_log
2021-08-15 00:38:14 +00:00
Denis Zhuravlev
67f5889b91
fix failed tests
2021-08-13 10:25:27 -03:00
Denis Zhuravlev
f20660455c
fix failded tests
2021-08-13 10:24:30 -03:00
tavplubix
93351cd3ee
Merge pull request #27535 from ClickHouse/tavplubix-patch-4
...
Add timeout for integration tests runner
2021-08-13 13:30:23 +03:00
Kseniia Sumarokova
0917488cec
Merge pull request #27382 from kssenii/cast-internal
...
add Cast internal function
2021-08-13 13:13:51 +03:00
Denis Zhuravlev
c83551ef8e
enable part_log by default
2021-08-12 21:10:20 -03:00
Nikita Mikhaylov
287262d500
Merge pull request #25714 from Algunenano/materialization_log
...
Better views logging
2021-08-12 17:13:33 +03:00
Alexander Tokmakov
88b4200008
fix
2021-08-12 13:40:54 +03:00
Maksim Kita
9cfd271962
Merge pull request #26995 from kitaisreal/database-dictionaries-custom-query
...
Database dictionaries custom query support
2021-08-12 13:23:13 +03:00
mergify[bot]
21cbd50ae1
Merge branch 'master' into materialization_log
2021-08-12 08:53:34 +00:00
kssenii
625aa67dad
Fix checks
2021-08-12 06:34:57 +00:00
kssenii
5ba959e12c
Add timeout
2021-08-11 12:30:11 +00:00
tavplubix
aa8ca01bb9
Update ci-runner.py
2021-08-11 15:17:46 +03:00
tavplubix
c93868babf
Update ci-runner.py
2021-08-11 13:12:24 +03:00
Maksim Kita
f8500633e6
Added tests
2021-08-11 11:18:22 +03:00
tavplubix
32e4a9a5a5
Update ci-runner.py
2021-08-10 20:58:36 +03:00
kssenii
eb4746ac69
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into cast-internal
2021-08-10 09:38:41 +00:00
Raúl Marín
d1d47658f5
Merge remote-tracking branch 'blessed/master' into materialization_log
2021-08-10 10:49:05 +02:00
tavplubix
e7290fb134
Merge pull request #27385 from BraulioVM/fix/27171
...
Do not fail if HTTP port is not set and user tries to send request to TCP port
2021-08-09 15:30:58 +03:00
kssenii
484c3a5d2e
Update kafka test
2021-08-09 11:55:38 +00:00
Vitaly Baranov
5a7fe51532
Merge pull request #27431 from vitlibar/grpc-protocol-bytes-instead-of-strings
...
Use bytes instead of strings in the GRPC protocol.
2021-08-09 09:51:24 +03:00
kssenii
a5a60a0451
Fix tests
2021-08-09 05:20:41 +00:00
kssenii
7991bb6e83
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into cast-internal
2021-08-08 21:30:17 +00:00
mergify[bot]
9869c8bb10
Merge branch 'master' into zero_copy_by_default
2021-08-07 16:53:44 +00:00
alexey-milovidov
6b6b4f114b
Merge pull request #27089 from ianton-ru/fix_test_merge_tree_s3_failover
...
Fix test_merge_tree_s3_failover with debug build
2021-08-07 19:46:37 +03:00
alexey-milovidov
ac3abb8fd2
Update test.py
2021-08-07 19:46:19 +03:00
alexey-milovidov
22bc7eb170
Merge pull request #27294 from Algunenano/better_kafka_errors
...
Improve kafka integration test error messages
2021-08-07 19:26:31 +03:00
Braulio Valdivielso
3fdc2aae19
test that the tcp handler returns correct http responses
...
I have added two tests. One checks the usual scenario where the
instance's config specifies a `http_port`. In that case, we expect the
`http_port` to be part of the response. The other scenario checks what
happens when the config doesn't specify a `http_port`. It's hard to
nail down the expectation there without hardcoding the error
response (which is not what we generally want) but I'm mainly checking
that no HTTP port is mentioned. This particular test would have failed
before my previous fix, because the TCP handler wouldn't have managed
to send back an HTTP response and `requests.post` would have thrown an
exception.
2021-08-07 11:56:05 +01:00
kssenii
bc7eaad5ca
Fix
2021-08-07 12:35:59 +03:00
kssenii
9ca422f0c5
Introduce CAST for internal usage
2021-08-07 09:03:10 +00:00
Vladimir C
9de16c5017
Merge pull request #27216 from ianton-ru/MDB-13990
2021-08-06 18:12:00 +03:00
Raúl Marín
b4e417e507
test_kafka_virtual_columns_with_materialized_view: Limit iterations and show better error
2021-08-06 13:39:33 +02:00
Raúl Marín
4f1b02426a
test_storage_kafka: Remove duplicated code
2021-08-06 13:38:56 +02:00
Raúl Marín
226db3f6be
Integration runner: Output longer errors
2021-08-06 13:38:30 +02:00
Vitaly Baranov
9a40ce87e9
Use bytes instead of strings in the GRPC protocol.
2021-08-06 13:55:49 +03:00
alexey-milovidov
1a3d8cebd2
Merge pull request #27197 from azat/nullable-index-fix
...
Fix on-disk format breakage for secondary indices over Nullable column
2021-08-05 21:52:18 +03:00
Anton Ivashkin
0e040ca40c
Add 10 seconds cache for S3 proxy resolver
2021-08-05 18:52:04 +03:00
Kseniia Sumarokova
5edd9e0513
Merge pull request #27198 from kssenii/postgres-db-schema
...
Support schema for postgres database engine
2021-08-05 18:30:47 +03:00
Raúl Marín
479f053f2e
Merge remote-tracking branch 'blessed/master' into materialization_log
2021-08-05 17:24:10 +02:00
Kruglov Pavel
59a94bd322
Merge pull request #27183 from ClickHouse/fix_detached_parts_name_partsing
...
Fix part name parsing in system.detached_parts
2021-08-05 18:21:03 +03:00