Commit Graph

23784 Commits

Author SHA1 Message Date
Alexey Milovidov
ab719f4432
Merge pull request #44358 from ClickHouse/fix-30975
Fix support for complex parameters of parametric aggregate functions, #30975
2022-12-28 16:38:41 +03:00
Alexey Milovidov
1b4121459d
Merge pull request #44645 from ClickHouse/keeper-test-fix
Fix flaky test `test_keeper_multinode_simple`
2022-12-28 16:38:17 +03:00
Alexey Milovidov
c055a48ea3 Merge branch 'master' into add-test-36038 2022-12-28 14:35:54 +01:00
Alexey Milovidov
9f74843b17
Merge pull request #44660 from vitlibar/fix-flaky-test_backup_restore_on_cluster
Fix flaky test test_backup_restore_on_cluster
2022-12-28 16:33:36 +03:00
alesapin
3eda778707 Better 2022-12-28 14:29:27 +01:00
Nikolai Kochetov
97700557e2 Update test. 2022-12-28 13:11:49 +00:00
Nikolai Kochetov
21e93cd41d Fix LOGICAL_ERROR for JOIN with subquery, UNION and totals. 2022-12-28 13:00:32 +00:00
Kruglov Pavel
d42d9f70c8
Merge pull request #44225 from Avogar/fix-datetime-timezone
Forbid paths in timezone names
2022-12-28 13:57:39 +01:00
Pradeep Chhetri
d36f2d7ad9 Fix minor typo: replace validate_bugix_check with validate_bugfix_check
Signed-off-by: Pradeep Chhetri <pradeepchhetri4444@gmail.com>
2022-12-28 20:53:32 +08:00
Han Fei
7bf4c0a386 make test faster 2022-12-28 13:16:35 +01:00
Alexey Milovidov
79f2e747e4 Remove QuestDB (flaky test) 2022-12-28 12:42:14 +01:00
Azat Khuzhin
bc6adc88c8 tests/integration: add workaround for a bug in kazoo driver
Refs: python-zk/kazoo#688
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-12-28 10:52:49 +01:00
taiyang-li
5ae280611b merge master and solve conflict 2022-12-28 14:44:10 +08:00
Vitaly Baranov
b211dff013 Increase the create table timeout in test "test_backup_restore_on_cluster". 2022-12-28 00:17:19 +01:00
Nikita Mikhaylov
9d10550b66
Merge branch 'master' into keeper-test-fix 2022-12-27 22:51:47 +01:00
Alexey Milovidov
5d6266c33e
Merge branch 'master' into fix_parser 2022-12-28 00:45:53 +03:00
Alexey Milovidov
b08edadc7a Fix test 2022-12-27 22:36:18 +01:00
Alexey Milovidov
55e2607ccf Merge branch 'master' into add-test-36038 2022-12-27 22:32:39 +01:00
Alexey Milovidov
14d7266e70
Merge branch 'master' into fix-30975 2022-12-27 23:21:10 +03:00
Alexey Milovidov
2892d447d4
Merge pull request #44626 from ClickHouse/alexey-milovidov-patch-5
Sometimes spot instances fail more than 20 times in a row
2022-12-27 23:20:05 +03:00
Alexey Milovidov
135a32c606
Merge branch 'master' into faster-startup-bc-check 2022-12-27 23:17:24 +03:00
avogar
2891d14da1 Fix tests 2022-12-27 19:34:09 +00:00
avogar
411f98306a Merge branch 'master' of github.com:ClickHouse/ClickHouse into validate-types 2022-12-27 19:24:15 +00:00
Han Fei
4d8513024c fix bug that async blocks cleanup not work 2022-12-27 20:12:09 +01:00
avogar
5c42b78766 Forbid paths in timezones in cctz lib 2022-12-27 17:52:38 +00:00
Kruglov Pavel
05c37365df
Merge branch 'master' into fix-datetime-timezone 2022-12-27 18:46:57 +01:00
Nikolay Degterinsky
29371745bd Fix lambdas parsing 2022-12-27 17:42:38 +00:00
Kruglov Pavel
819e7a3008
Merge pull request #44550 from Avogar/better-json-tuples-to-arrays-inference
Improve inferring arrays with nulls in JSON formats
2022-12-27 18:22:13 +01:00
Nikita Mikhaylov
00ecf6dd05 Better 2022-12-27 17:04:47 +00:00
Nikita Mikhaylov
ce6264b684 Done 2022-12-27 17:03:57 +00:00
Anton Popov
1f7a4a94ff fix test 02015_async_inserts_2 2022-12-27 17:01:30 +00:00
Azat Khuzhin
e1ad5cee7e tests/integration: add missing kazoo client termination
pytest play games with logging output [1].

  [1]: https://github.com/pytest-dev/pytest/issues/5502

But this does not actually affect ClickHouse tests, the only reason is
that the kazoo client is not stopped correctly without calling
kazoo.client.KazooClient.stop(), and that's why you can see the
following messages:

<details>

    test_storage_rabbitmq/test.py::test_rabbitmq_big_message --- Logging error ---
    Traceback (most recent call last):
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 179, in _socket_error_handling
        yield
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 659, in _connect
        self._socket = self.handler.create_connection(
      File "/usr/local/lib/python3.8/dist-packages/kazoo/handlers/threading.py", line 178, in create_connection
        return utils.create_tcp_connection(socket, *args, **kwargs)
      File "/usr/local/lib/python3.8/dist-packages/kazoo/handlers/utils.py", line 265, in create_tcp_connection
        sock = module.create_connection(address, timeout_at)
      File "/usr/lib/python3.8/socket.py", line 808, in create_connection
        raise err
      File "/usr/lib/python3.8/socket.py", line 796, in create_connection
        sock.connect(sa)
    socket.timeout: timed out

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 579, in _connect_attempt
        read_timeout, connect_timeout = self._connect(host, hostip, port)
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 659, in _connect
        self._socket = self.handler.create_connection(
      File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
        self.gen.throw(type, value, traceback)
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 182, in _socket_error_handling
        raise ConnectionDropped("socket connection error: %s" % (err,))
    kazoo.exceptions.ConnectionDropped: socket connection error: None

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "/usr/lib/python3.8/logging/__init__.py", line 1088, in emit
        stream.write(msg + self.terminator)
    ValueError: I/O operation on closed file.
    Call stack:
      File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
        self._bootstrap_inner()
      File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
        self.run()
      File "/usr/lib/python3.8/threading.py", line 870, in run
        self._target(*self._args, **self._kwargs)
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 512, in zk_loop
        if retry(self._connect_loop, retry) is STOP_CONNECTING:
      File "/usr/local/lib/python3.8/dist-packages/kazoo/retry.py", line 126, in __call__
        return func(*args, **kwargs)
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 552, in _connect_loop
        status = self._connect_attempt(host, hostip, port, retry)
      File "/usr/local/lib/python3.8/dist-packages/kazoo/protocol/connection.py", line 622, in _connect_attempt
        self.logger.warning('Connection dropped: %s', e)
    Message: 'Connection dropped: %s'
    Arguments: (ConnectionDropped('socket connection error: None'),)

</details>

Which eventually leads to incorrectly parsed report.

This patch is an addition to the `logging.raiseExceptions=False` - #44618

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-12-27 17:01:06 +01:00
Kruglov Pavel
ac162a2c49
Merge pull request #44522 from Avogar/zero-numbers
Infer numbers starting from zero as strings in TSV
2022-12-27 17:00:10 +01:00
Kruglov Pavel
f95eabc192
Merge pull request #44469 from Avogar/low-card-if
Don't execute and/or/if/multiIf on LowCardinality dictionary
2022-12-27 16:59:42 +01:00
Kruglov Pavel
6dea7336f7
Merge pull request #44405 from Avogar/fix-parquet-orc
Fix reading columns that are not presented in input data in Parquet/ORC formats
2022-12-27 16:58:35 +01:00
Kruglov Pavel
f582cb4c9f
Merge branch 'master' into fix-comp-setting 2022-12-27 16:53:24 +01:00
Kruglov Pavel
e981b2e78b
Merge pull request #43813 from Avogar/fix-sum-if
Better handling of NULL in aggregate combinators, fix possible segfault/logical error
2022-12-27 16:50:48 +01:00
Kruglov Pavel
c3405be272
Increase the number of attempts in tests 2022-12-27 16:49:32 +01:00
alesapin
3a7f26ff3a Split test into two 2022-12-27 16:15:23 +01:00
Azat Khuzhin
c9c590071d Add ability to disable deduplication for BACKUP
Right now BACKUP omit similar files, and will not allow to use this
backup as a regular table, and usually those similar files are quite
small (i.e. columns.txt).

So by using `BACKUP TO S3() deduplicate_files=0` you will be possible to
use `ATTACH TABLE` directly from S3.

P.S. right now it is possible only for the table with one part, since,
usually, there is nothing to deduplicate (if the columns are different).

v2: Add deduplicate_files into metadata
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-12-27 15:56:06 +01:00
Alexey Milovidov
611bb44288
Merge branch 'master' into fix-30975 2022-12-27 17:15:12 +03:00
Alexey Milovidov
c26ce8a629
Merge pull request #44338 from ClickHouse/mysql-compat-test
Add a test for PowerBI
2022-12-27 17:12:51 +03:00
Mikhail f. Shiryaev
93af1f3f7c
Restart failing workflows up to 30 times 2022-12-27 14:50:37 +01:00
Mikhail f. Shiryaev
d6ebb5fca8
Merge pull request #44399 from ClickHouse/checkout-action
Implement a custom central checkout action
2022-12-27 14:15:22 +01:00
alesapin
560223ac19 Merge branch 'fix-restart-after-quorum-insert' of github.com:CurtizJ/ClickHouse into CurtizJ-fix-restart-after-quorum-insert 2022-12-27 13:48:55 +01:00
Alexey Milovidov
464a513f0e
Merge pull request #44615 from ClickHouse/projection-grouping-sets
Disable projections in presense of any grouping sets, including WITH ROLLUP, WITH CUBE and WITH TOTALS
2022-12-27 15:31:03 +03:00
Alexey Milovidov
43376af340
Merge branch 'master' into alexey-milovidov-patch-5 2022-12-27 15:14:37 +03:00
Alexey Milovidov
05c27f4e15
Merge pull request #44603 from ClickHouse/runlog
Rename `runlog.log` to `run.log` in tests
2022-12-27 15:14:05 +03:00
Alexey Milovidov
2c5485b86e
Merge pull request #44617 from ClickHouse/fix-create_drop_replicated_db_stress
Fix test `01111_create_drop_replicated_db_stress`
2022-12-27 15:12:54 +03:00
Alexey Milovidov
cb0a91d865
Sometimes spot instances fail more than 20 times in a row 2022-12-27 15:05:11 +03:00
Alexey Milovidov
4e53ddb2e1
Merge pull request #44340 from ClickHouse/add-test-29386
Add a test for #29386
2022-12-27 14:58:59 +03:00
Alexey Milovidov
55131f7ae8
Merge pull request #44341 from ClickHouse/add-test-22929
Add a test for #22929
2022-12-27 14:58:28 +03:00
Alexey Milovidov
1b21cc018e
Merge pull request #44342 from ClickHouse/add-test-29883
Add a test for #29883
2022-12-27 14:55:14 +03:00
Alexey Milovidov
31348a0c2b
Merge pull request #44355 from ClickHouse/add-test-22160
Add a test for #22160
2022-12-27 14:53:46 +03:00
Alexey Milovidov
21d9e7ebc3
Merge pull request #44360 from ClickHouse/add-test-34724
Add a test for #34724
2022-12-27 14:53:34 +03:00
alesapin
93b9d0a8a6
Revert strange change 2022-12-27 12:52:03 +01:00
Alexey Milovidov
58d849d732
Merge pull request #44356 from ClickHouse/add-test-34708
Add a test for #34708
2022-12-27 14:48:58 +03:00
Alexey Milovidov
8d23d2f2f2
Merge pull request #44357 from ClickHouse/add-test-30679
Add a test for #30679
2022-12-27 14:46:31 +03:00
Alexey Milovidov
7e447592b1
Merge pull request #44618 from azat/tests/integration/pytest-logging-fix
tests/integration: suppress exceptions during logging (due to pytest)
2022-12-27 14:33:37 +03:00
Alexey Milovidov
79d43c836a
Merge pull request #44572 from ClickHouse/fix-hdfs-test
Fix HDFS test
2022-12-27 14:31:00 +03:00
Alexey Milovidov
41fc65b47b
Merge pull request #44573 from ClickHouse/fix-distributed-queries-stress
Fix test_distributed_queries_stress
2022-12-27 14:30:28 +03:00
alesapin
ebc022feba
Merge pull request #44604 from ClickHouse/fix-stress-test-hung
Fix hung query in stress test
2022-12-27 12:26:21 +01:00
Han Fei
211eedd50d
Merge branch 'master' into fix_explain_insert_query 2022-12-27 12:02:27 +01:00
Raúl Marín
fc1fa82a39
Merge branch 'master' into perf_experiment 2022-12-27 10:51:58 +01:00
Azat Khuzhin
8b2ed0e3cd tests/integration: disable logging.raiseExceptions
Due to pytest play games with logging [1] it is better to ignore it.

  [1]: https://github.com/pytest-dev/pytest/issues/5502

This is due to incorrect kazoo client usage (not all clients calls
stop())

Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-12-26 22:57:54 +01:00
Alexey Milovidov
37cc622559 Fix test 01111_create_drop_replicated_db_stress 2022-12-26 22:54:41 +01:00
Alexey Milovidov
593675a7c5 Disable projections in presense of any grouping sets, including WITH ROLLUP, WITH CUBE and WITH TOTALS 2022-12-26 22:31:41 +01:00
Alexey Milovidov
a92a9b4d55
Merge pull request #44535 from azat/tests/integration-dmesg
tests: capture dmesg in integration tests
2022-12-26 23:49:02 +03:00
Igor Nikonov
0d428318a9 Merge remote-tracking branch 'origin/master' into fix-restart-after-quorum-insert 2022-12-26 19:18:35 +00:00
Alexey Milovidov
c5155b8d32
Merge pull request #44442 from Avogar/csv-bool-crlf
Fix reading bool value with CRLF in CSV format
2022-12-26 21:25:18 +03:00
Alexey Milovidov
91c1f9de8f Faster server startup after stress test 2022-12-26 18:13:50 +01:00
Alexey Milovidov
47cc08ada3 Fix hung query in stress test 2022-12-26 16:46:51 +01:00
Alexey Milovidov
6ba360be71 Rename runlog.log to run.log 2022-12-26 16:29:32 +01:00
alesapin
3555017336
Merge pull request #44564 from ClickHouse/turn_offable_bc_check
Make BC check optional (if env var set)
2022-12-26 16:15:13 +01:00
alesapin
d8924f0b0e
Merge pull request #44578 from ClickHouse/check-bad-index-granularity
Check for bad index granularity
2022-12-26 15:20:36 +01:00
Alexey Milovidov
a06c8268ea Remove the offender 2022-12-26 11:28:26 +01:00
Yakov Olkhovskiy
280e14456f
Merge pull request #44026 from ClickHouse/bug-ephemeral-default
Support expression for EPHEMERAL (currently only literal is supported)
2022-12-25 18:59:38 -05:00
Yakov Olkhovskiy
24eeaa500b
Merge pull request #44502 from mayamika/add-null-dictionary-source
Add null dictionary source
2022-12-25 17:02:37 -05:00
Alexey Milovidov
a4895286de Add a test 2022-12-25 16:08:20 +01:00
alesapin
b3b2b61281 Disable test for replicated DB run 2022-12-25 14:06:20 +01:00
alesapin
bb77ad8941 Disable BC check 2022-12-25 13:49:01 +01:00
Alexey Milovidov
8259aa4a64
Merge branch 'master' into add-test-34708 2022-12-25 13:35:28 +03:00
Alexey Milovidov
f9f0f9446d Fix distributed_queries_stress 2022-12-25 09:46:51 +01:00
robot-clickhouse
19f05d4fb4 Automatic style fix 2022-12-25 08:38:02 +00:00
Alexey Milovidov
cbf140633b Fix HDFS test 2022-12-25 09:30:20 +01:00
alesapin
705be441a1 Shutup shellcheck 2022-12-24 18:51:56 +01:00
alesapin
600bedbff4 Add setting to disallow arguments in ReplicatedMergeTree constructor for DatabaseReplicated 2022-12-24 18:38:14 +01:00
mayamika
f66a0c01ad Add null dictionary source 2022-12-24 17:11:30 +03:00
Alexey Milovidov
25a4361fae
Merge pull request #44529 from ClickHouse/integration-tests-tar
Ignore exit code 1 for tar in integration tests
2022-12-24 05:10:33 +03:00
avogar
798c3111ed Improve inferring arrays with nulls in JSON formats 2022-12-24 00:21:48 +00:00
avogar
8dfe90a6c1 Improve json object as string inference 2022-12-23 19:44:13 +00:00
Yakov Olkhovskiy
168ba57ce4
Update 02287_ephemeral_format_crash.sql 2022-12-23 10:42:14 -05:00
Smita Kulkarni
84362461fb Updated test to use macro substitution for hdfs disk - Allow macro substitution in endpoint 2022-12-23 16:07:56 +01:00
Azat Khuzhin
69fadd2193 tests: capture dmesg in integration tests
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-12-23 15:50:10 +01:00
Smita Kulkarni
3d62bc2635 Allow macro substitution in endpoint of disks
Implementation:
* Updated to substitute macros in endpoint for all disks (s3, hfs, web).
Testing:
* Added an integration test test/integration/test_endpoint_macro_substitution.
2022-12-23 15:09:24 +01:00
Alexander Gololobov
0788269c25
Merge pull request #44410 from ClickHouse/fix_unicode_bar
Fix buffer overrun in UnicodeBar::render
2022-12-23 13:17:24 +01:00
Mikhail f. Shiryaev
6d0cd35cd0
Ignore exit code 1 for tar in integration tests 2022-12-23 13:08:59 +01:00
Vladimir C
9b05f21acc
Merge pull request #44016 from ClickHouse/vdimir/join_on_and_const 2022-12-23 12:24:14 +01:00
Vladimir C
62b8acdeb9
Merge pull request #44371 from ClickHouse/vdimir/join_switch_alias_fuzz 2022-12-23 12:12:06 +01:00
Vladimir C
7482ea54ab
Merge pull request #43972 from ClickHouse/vdimir/tmp-data-in-fs-cache-2 2022-12-23 11:59:27 +01:00
Kseniia Sumarokova
068f2f329b
Merge pull request #44517 from kssenii/better-error-message
Better error message if named collection does not exist
2022-12-23 11:39:06 +01:00
Duc Canh Le
475d06b216
Merge branch 'master' into ch_canh_fix_lc_in 2022-12-23 10:12:15 +08:00
Alexey Milovidov
d628deb2fc
Update 02503_mysql_compat_utc_timestamp.sql 2022-12-23 03:29:18 +03:00
avogar
f555048ae5 Infer numbers starting from zero as strings in TSV 2022-12-22 21:55:39 +00:00
Dmitry Novik
cff882d506 Merge remote-tracking branch 'origin/master' into refector-function-node 2022-12-22 21:34:29 +00:00
avogar
0c74b6c066 Fix tests 2022-12-22 17:40:06 +00:00
save-my-heart
6858f3fc01 add test 2022-12-22 23:00:54 +08:00
kssenii
11c0aa189a Better error message 2022-12-22 15:29:35 +01:00
Alexander Gololobov
0ae7f03516
Merge branch 'master' into fix_unicode_bar 2022-12-22 14:53:33 +01:00
Kruglov Pavel
6a017a6586
Merge pull request #43379 from Avogar/better-capn-proto
Add small improvements in CapnProto format
2022-12-22 14:50:10 +01:00
Nikolai Kochetov
773de7a8a6
Merge pull request #44472 from CurtizJ/fix-mutations
Fix mutations with setting `max_streams_for_merge_tree_reading`
2022-12-22 14:05:20 +01:00
Vladimir C
9a38911d5d
Merge pull request #43239 from bigo-sg/array_join_support_map 2022-12-22 12:18:34 +01:00
Vladimir C
341d759837
Merge branch 'master' into remove-limits-on-maximum-result-for-view 2022-12-22 12:17:06 +01:00
Vladimir C
f3a1ddd04f
Merge pull request #44483 from ClickHouse/vdimir/flaky_01092_memory_profiler 2022-12-22 12:13:39 +01:00
Duc Canh Le
24d7d9de90
Merge branch 'master' into ch_canh_fix_lc_in 2022-12-22 19:11:22 +08:00
vdimir
88008726d8
Merge branch 'master' into vdimir/tmp-data-in-fs-cache-2 2022-12-22 10:58:39 +00:00
Kseniia Sumarokova
993fb387d8
Merge pull request #44289 from kssenii/write-throw-cache-fix-writing
Fix possible unneeded cache write interruption in write-through cache
2022-12-22 11:31:29 +01:00
Maksim Kita
e5ebf20044
Merge pull request #44097 from kitaisreal/analyzer-support-set-index
Analyzer support Set index
2022-12-22 13:30:15 +03:00
vdimir
182b34c11e
Fixes 2022-12-22 10:22:57 +00:00
vdimir
511e8d698d
Rename config param tmp_cache -> temporary_data_in_cache 2022-12-22 10:22:56 +00:00
vdimir
d30d25dbbe
Temporary files evict fs cache 2022-12-22 10:22:49 +00:00
Vladimir C
78789e12e8
Merge pull request #44367 from ClickHouse/vdimir/disable_00172_parallel_join 2022-12-22 11:16:38 +01:00
Maksim Kita
3e2e35f54e
Merge pull request #44491 from ClickHouse/vdimir/analyzer_sort_msan
Default value for optional in SortNode::updateTreeHashImpl
2022-12-22 13:15:59 +03:00
Vladimir C
6a0210fb0f
Merge pull request #43785 from mo-avatar/binhexstringliterals 2022-12-22 10:56:18 +01:00
vdimir
ae66e0019f Clarify query_id in test 01092_memory_profiler 2022-12-22 10:53:34 +01:00
Duc Canh Le
e122ea2f25 add missing files 2022-12-22 16:33:16 +08:00
Duc Canh Le
9083091ee5 fix LC in bug 2022-12-22 16:20:25 +08:00
Yakov Olkhovskiy
3d04a33de5 update tests 2022-12-21 23:15:45 +00:00
Yakov Olkhovskiy
1ded2d1c0b
Merge branch 'master' into bug-ephemeral-default 2022-12-21 16:38:43 -05:00
avogar
4ab3e90382 Validate types in table function arguments/CAST function arguments/JSONAsObject schema inference 2022-12-21 21:21:30 +00:00
Alexander Gololobov
269700df42
Merge branch 'master' into feature/format-datetime-fractional-second 2022-12-21 21:34:46 +01:00
Ilya Yatsishin
de33901c55
Merge pull request #44462 from qoega/date-string-comparison 2022-12-21 22:26:09 +03:00
Alexander Gololobov
2a3aa5248e Test %f for data types without fractional seconds 2022-12-21 19:57:30 +01:00
vdimir
3b483e513f
Default value for optional in SortNode::updateTreeHashImpl 2022-12-21 15:04:12 +00:00
alesapin
e49deb740f
Merge pull request #44444 from ClickHouse/disable_tsan_for_grpc
Disable buggy tsan assertion for integration test
2022-12-21 14:31:12 +01:00
Kseniia Sumarokova
5df5f7d0dc
Merge pull request #44438 from ClickHouse/kssenii-patch-6
Update 01072_window_view_multiple_columns_groupby.sh
2022-12-21 14:28:26 +01:00
Alexey Milovidov
a184d1f355
Merge pull request #44470 from ClickHouse/fix-roaring-memory-tracker
Fix flaky test `roaring_memory_tracking`
2022-12-21 15:59:25 +03:00
Anton Popov
5d6064cd28 better config in test 2022-12-21 11:35:11 +00:00
Kruglov Pavel
5e01a3d74e
Merge branch 'master' into improve-streaming-engines 2022-12-21 10:51:50 +01:00
Kruglov Pavel
09ab5832b1
Merge pull request #44382 from Avogar/fix-bson-object-id
Fix reading ObjectId in BSON schema inference
2022-12-21 10:48:50 +01:00
Kruglov Pavel
524e6cd799
Merge branch 'master' into fix-comp-setting 2022-12-21 10:48:19 +01:00
Kruglov Pavel
1bedd57355
Merge pull request #44241 from ClibMouse/bugfix/subtract-subseconds
Bring interval subtraction from datetime in line with addition
2022-12-21 10:30:07 +01:00
Robert Schulze
f8378473c4
Fix call to wrong overload on Darwin 2022-12-21 09:00:44 +00:00
Anton Popov
4b7f1e0cf2 fix mutations with setting 'max_streams_for_merge_tree_reading' 2022-12-21 01:59:53 +00:00
Alexey Milovidov
a0455a0710 Fix flaky test roaring_memory_tracking 2022-12-20 23:51:07 +01:00
Alexey Milovidov
e371c1a189
Merge branch 'master' into mysql-compat-test 2022-12-21 01:45:55 +03:00
Alexey Milovidov
35eac73937
Merge branch 'master' into add-test-22929 2022-12-21 01:45:33 +03:00
Alexey Milovidov
a6f50edde3
Merge branch 'master' into add-test-29883 2022-12-21 01:45:18 +03:00
Alexey Milovidov
4cff60e2aa
Merge branch 'master' into add-test-22160 2022-12-21 01:44:44 +03:00
Alexey Milovidov
ce996ab349
Merge branch 'master' into add-test-34708 2022-12-21 01:44:24 +03:00
Alexey Milovidov
2c66d21dc1
Update 02509_h3_arguments.sql 2022-12-21 01:44:17 +03:00
Alexey Milovidov
53a36b2af8
Merge branch 'master' into add-test-30679 2022-12-21 01:42:43 +03:00
Alexey Milovidov
ae7a7bc850
Merge branch 'master' into fix-30975 2022-12-21 01:41:29 +03:00
Alexey Milovidov
9fcd292391
Merge branch 'master' into add-test-29386 2022-12-21 01:40:39 +03:00
avogar
4f376308b6 Remove extra line 2022-12-20 22:09:49 +00:00
avogar
a7129332af Don't execute and/or/if/multiIf on LowCardinality dictionary 2022-12-20 22:07:59 +00:00
Kruglov Pavel
bc0b35da1e
Update tests/queries/0_stateless/02513_csv_bool_allow_crlf.reference
Co-authored-by: Nick Sweeting <nsweeting@gmail.com>
2022-12-20 21:26:10 +01:00
Yatsishin Ilya
28f907b1d9 Add tests as examples with errors that we should eliminate 2022-12-20 19:22:54 +00:00
Nikita Taranov
34029d47f3
Randomize setting enable_memory_bound_merging_of_aggregation_results in tests (#43986)
* Randomize setting `enable_memory_bound_merging_of_aggregation_results` in tests

* fix 02343_aggregation_pipeline
2022-12-20 20:18:40 +01:00
alesapin
a50e4a2066
Merge branch 'master' into add-test-34724 2022-12-20 19:23:07 +01:00
Kruglov Pavel
2663fdbc4c
Update tests/queries/0_stateless/02513_csv_bool_allow_crlf.sh
Co-authored-by: Nick Sweeting <nsweeting@gmail.com>
2022-12-20 19:14:52 +01:00
Yakov Olkhovskiy
8462b724ca
Merge branch 'master' into feature-protocol-proxy 2022-12-20 13:12:07 -05:00
Kruglov Pavel
03ed7c4097
Fix the test 2022-12-20 19:09:48 +01:00
avogar
9c8e6fa1ce Remove test tag 2022-12-20 17:48:40 +00:00
avogar
c49638e3a9 Respect setting settings.schema_inference_make_columns_nullable in Parquet/ORC/Arrow formats 2022-12-20 17:46:42 +00:00
robot-clickhouse
82203e629c Automatic style fix 2022-12-20 17:46:17 +00:00
Yakov Olkhovskiy
9092134544 auth_use_forwarded_address config setting added, using forwarded address for proxied TCP and HTTP connection, likely bug is fixed in AccessControl, relevant test is appended 2022-12-20 17:39:40 +00:00
Dmitry Novik
4793412887
Merge branch 'master' into refector-function-node 2022-12-20 18:26:19 +01:00
alesapin
80cae1aa3d Better 2022-12-20 17:37:03 +01:00
alesapin
33389f01e6 Disable tsan assertion for test 2022-12-20 17:33:08 +01:00
Kruglov Pavel
643a35bed1
Merge pull request #44019 from Avogar/refactor-schema-inference
Refactor and improve schema inference for text formats
2022-12-20 17:29:03 +01:00
avogar
701cfbb1fd Try fix test 2022-12-20 16:25:13 +00:00
Kruglov Pavel
c0b17ca0af
Merge branch 'master' into fix-bson-object-id 2022-12-20 17:18:10 +01:00
avogar
dfb2ae9113 Remove tags 2022-12-20 16:13:39 +00:00
avogar
20ee136139 Allow CRLF after bool value in CSV format 2022-12-20 16:12:24 +00:00
Alexander Gololobov
5349a0b966 Update stateful test results, diff is caused by duplicate U+258B in the old version 2022-12-20 16:50:31 +01:00
Alexander Tokmakov
8b553d854a
Merge pull request #44387 from ClickHouse/fix_invalid_queries
Throw SYNTAX_ERROR on invalid ON CLUSTER
2022-12-20 18:28:18 +03:00
Kseniia Sumarokova
9949a4decd
Update 01072_window_view_multiple_columns_groupby.sh 2022-12-20 16:26:17 +01:00
Kseniia Sumarokova
9d66294c1d
Update 01072_window_view_multiple_columns_groupby.sh 2022-12-20 16:23:53 +01:00
Kruglov Pavel
a0ee1c1227
Merge branch 'master' into fix-sum-if 2022-12-20 15:20:23 +01:00
Kruglov Pavel
bd3efc458c
Merge branch 'master' into fix-comp-setting 2022-12-20 14:54:22 +01:00
Kruglov Pavel
606d2ea9b3
Merge pull request #43635 from Avogar/fix-fuzz
Fix possible use-of-unitialized value after executing expressions after sorting
2022-12-20 14:51:50 +01:00
Kruglov Pavel
9c5a0aafcd
Skip fasttest 2022-12-20 14:50:06 +01:00
alesapin
10ea709931 Fix broken test 2022-12-20 14:00:17 +01:00
Sema Checherinda
7627786af7
Merge pull request #43733 from wineternity/issue_43333
Add support for signed arguments in range() #43333
2022-12-20 13:56:02 +01:00
Robert Schulze
4dcfe3e216
Merge pull request #44366 from ClickHouse/sse2-in-universal
universal.sh: Fall back to plain x86-64 on pre-2006 hardware
2022-12-20 13:51:02 +01:00
Kruglov Pavel
3f1e40aacd
Merge branch 'master' into fix-orc 2022-12-20 13:32:46 +01:00
Alexey Milovidov
faf7ac2aef
Update 02509_h3_arguments.sql 2022-12-20 15:19:41 +03:00
Nikolai Kochetov
720f0cca40
Merge pull request #44346 from ClickHouse/try-fix-44221
Fix possible crash with IN, LowCardinality and constant folding
2022-12-20 12:09:12 +01:00
Kseniia Sumarokova
b8bf28eee0
Merge branch 'master' into write-throw-cache-fix-writing 2022-12-20 11:40:49 +01:00
Mikhail f. Shiryaev
6646950f3c
Get rid of unused set-output 2022-12-20 11:40:22 +01:00
Robert Schulze
3f03b0b53d
Revert "Revert "Add function 'age'""
This reverts commit 4549b14027.
2022-12-20 10:18:43 +00:00
Han Fei
6ace8f13db
Merge pull request #44359 from ClickHouse/add-test-34669
Add a test for #34669
2022-12-20 11:12:34 +01:00
Robert Schulze
a6019fec70
Merge branch 'master' into sse2-in-universal 2022-12-20 10:24:50 +01:00
Konstantin Bogdanov
93375fc3e5
Merge pull request #44411 from thevar1able/fix-settings-constraints
Fix settings constraints
2022-12-20 10:19:07 +01:00
Raúl Marín
45d27f461b
Merge branch 'master' into perf_experiment 2022-12-20 09:07:48 +00:00
Alexander Gololobov
e127e3d938 Update test results, diff is caused by duplicate U+258B in the old version 2022-12-20 09:57:34 +01:00
Konstantin Bogdanov
a094af9a49
Lint 2022-12-20 04:00:45 +01:00
Konstantin Bogdanov
b07001e7d7
Add a test 2022-12-20 03:26:31 +01:00
Alexander Gololobov
4cd91b1ec6 Test for bar() with fractional width 2022-12-20 02:17:02 +01:00
avogar
e262e375dc Fix reading columns that are not presented in input data in Parquet/ORC formats 2022-12-19 20:30:54 +00:00
Nikolai Kochetov
972b602ae8
Merge branch 'master' into try-fix-44221 2022-12-19 21:11:41 +01:00
Kruglov Pavel
d788ad7721
Skip fasttest 2022-12-19 20:55:03 +01:00
Robert Schulze
2b9a0824fe
Cosmetics: Rename "amd64-sse2" builds to "amd64-compat" builds
... a bit of consistency with "aarch64-v80compat"
2022-12-19 19:00:21 +00:00
avogar
0c406adce2 Fix reading Map type in ORC format 2022-12-19 18:23:07 +00:00
Alexander Tokmakov
0bac667fd8 throw SYNTAX_ERROR on invalid ON CLUSTER 2022-12-19 17:36:45 +01:00
Dmitry Novik
a760bbc700 Fix resolve in IfTransformStringsToEnumPass 2022-12-19 16:04:03 +00:00
avogar
21cdf6e6ae Fix reading ObjectId in BSON schema inference 2022-12-19 14:13:42 +00:00
Han Fei
98efee2d75
Merge branch 'master' into hanfei/fix-async-flaky 2022-12-19 14:14:29 +01:00
Han Fei
1cb98eb2d6 address comments 2022-12-19 14:05:50 +01:00
Mikhail f. Shiryaev
27b92a69dc
Merge pull request #44311 from ClickHouse/fix-false-success-built
Fix false success rerun on similar prefix for another builds
2022-12-19 13:58:29 +01:00
vdimir
312586df97
Fix possible nullptr in HashJoin::correctNullability 2022-12-19 12:31:58 +00:00
alesapin
12fbed86e5
Merge pull request #44363 from ClickHouse/keeper-zookeeper-test-restart-zk-cluster
Try restarting ZK cluster on failed connection in `test_keeper_zookeeper_converted`
2022-12-19 12:52:10 +01:00
vdimir
c7636a0af2
Rename 00172_parallel_join to 00172_hits_joins 2022-12-19 11:09:22 +00:00
vdimir
36557f1e74
Disable grase_hash in test 00172_parallel_join 2022-12-19 11:07:30 +00:00
Anton Popov
93b81d2e34
Merge pull request #44299 from CurtizJ/reset-parts-in-insert
Do not hold data parts during insert
2022-12-19 11:57:24 +01:00
Han Fei
ad9bb83464
Merge branch 'master' into hanfei/fix-async-flaky 2022-12-19 11:50:32 +01:00
kssenii
3f6451267f Fix test 2022-12-19 11:44:28 +01:00
Antonio Andelic
55dd591392 Try restarting ZK cluster on failed connection 2022-12-19 09:28:59 +00:00
Antonio Andelic
0162632275
Merge pull request #44306 from ClickHouse/another-fix-for-test-server-reload
Another fix `test_server_reload`
2022-12-19 09:14:03 +01:00
Alexey Milovidov
06652b7d1f Add a test for #34724 2022-12-19 08:57:26 +01:00
Alexey Milovidov
1960f9997e Add a test for #34669 2022-12-19 08:51:09 +01:00
Alexey Milovidov
8b6092b321 Fix support for complex parameters of parametric aggregate functions, #30975 2022-12-19 07:26:54 +01:00
Alexey Milovidov
fddbad5748 Add a test for #30679 2022-12-19 06:49:42 +01:00
Alexey Milovidov
c3c9ebc14f Add a test for #34708 2022-12-19 06:38:26 +01:00
Alexey Milovidov
b2fb8f870e Add a test for #22160 2022-12-19 05:48:28 +01:00
Han Fei
ee250174ab fix flack test "02481_async_insert_dedup.python" 2022-12-18 22:44:51 +01:00
kssenii
000e7a5cd3 Fix test 2022-12-18 20:22:08 +01:00
Nikolai Kochetov
492065c5b1 Add a test. 2022-12-18 17:40:38 +00:00
kssenii
4cd4d2cc07 Fix test 2022-12-18 16:14:56 +01:00
Alexey Milovidov
1795c583a1 Add a test for #29883 2022-12-18 08:00:32 +01:00
Alexey Milovidov
180b927065 Add a test for #22929 2022-12-18 06:45:16 +01:00
Alexey Milovidov
72d4c7637f Add a test for #29386 2022-12-18 06:39:57 +01:00
Alexey Milovidov
4bc76dfdb4 Add a test for #36038 2022-12-18 06:20:56 +01:00
Alexey Milovidov
2d3192b083 Add a test for PowerBI 2022-12-18 04:59:31 +01:00
Alexey Milovidov
70e011ff90 Add a test for PowerBI 2022-12-18 04:58:51 +01:00
Alexey Milovidov
dee27e1695
Merge branch 'master' into fix-comp-setting 2022-12-18 06:12:59 +03:00
Alexey Milovidov
8729dc1e54
Merge pull request #44328 from ClickHouse/git-import-no-debug
Disable "git-import" test in debug mode
2022-12-18 05:46:51 +03:00
Alexey Milovidov
1388e40b2a
Merge pull request #44018 from ClickHouse/alesapin-patch-1
Fix wrong char in command
2022-12-17 04:15:56 +03:00
Alexey Milovidov
d642de1b91
Merge branch 'master' into bug-ephemeral-default 2022-12-17 04:14:41 +03:00
Alexey Milovidov
219343d8b0
Merge pull request #44123 from azat/tests/01293_show_clusters
tests: exclude flaky columns from SHOW CLUSTERS test
2022-12-17 04:13:23 +03:00
Alexey Milovidov
19a71ab74b Disable "git-import" test in debug mode 2022-12-17 02:02:59 +01:00
Alexey Milovidov
ddb0d1f830
Merge branch 'master' into fix-comp-setting 2022-12-17 03:22:49 +03:00
Alexey Milovidov
d3fd9a6c1e
Merge pull request #44239 from azat/builtin-skim-v2
Builtin skim for fuzzy search in clickhouse client/local history
2022-12-16 21:23:24 +03:00
Kruglov Pavel
37df9b9990
Merge branch 'master' into refactor-schema-inference 2022-12-16 19:13:15 +01:00
Kruglov Pavel
33583e10a6
Merge branch 'master' into fix-comp-setting 2022-12-16 19:10:53 +01:00
Nikolay Degterinsky
7a29bf0e4c
Merge pull request #43993 from evillique/fix_settings_constraints
Fix CREATE query constraints
2022-12-16 18:01:04 +01:00
lzydmxy
5d35b19e7e Add tests 2022-12-17 00:47:05 +08:00
Dmitry Novik
875a24a650 Merge remote-tracking branch 'origin/master' into refector-function-node 2022-12-16 16:07:30 +00:00
avogar
3f17d05a30 Merge branch 'master' of github.com:ClickHouse/ClickHouse into fix-sum-if 2022-12-16 14:47:07 +00:00