mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Fix tests and update ya.make
This commit is contained in:
parent
e5593f594d
commit
fcfda4b983
@ -17,6 +17,14 @@ dpkg -i package_folder/clickhouse-test_*.deb
|
||||
# install test configs
|
||||
/usr/share/clickhouse-test/config/install.sh
|
||||
|
||||
|
||||
# FIXME: This is an ugly fix to enable S3 related features to test with Funcitonal tests
|
||||
# AWS SDK checks these variables in the constructor of ClientConfiguration
|
||||
# and in case of absence will log some warnings in server's logs.
|
||||
# And tests will fail in this case.
|
||||
export AWS_RETRY_MODE="standart"
|
||||
export AWS_MAX_ATTEMPTS=3
|
||||
|
||||
# For flaky check we also enable thread fuzzer
|
||||
if [ "$NUM_TRIES" -gt "1" ]; then
|
||||
export THREAD_FUZZER_CPU_TIME_PERIOD_US=1000
|
||||
|
@ -145,7 +145,6 @@ SRCS(
|
||||
TokenIterator.cpp
|
||||
formatAST.cpp
|
||||
formatSettingName.cpp
|
||||
getInsertQuery.cpp
|
||||
iostream_debug_helpers.cpp
|
||||
makeASTForLogicalFunction.cpp
|
||||
obfuscateQueries.cpp
|
||||
|
@ -222,8 +222,6 @@ SRCS(
|
||||
TTLDescription.cpp
|
||||
VirtualColumnUtils.cpp
|
||||
extractKeyExpressionList.cpp
|
||||
fuzzers/columns_description_fuzzer.cpp
|
||||
fuzzers/mergetree_checksum_fuzzer.cpp
|
||||
getStructureOfRemoteTable.cpp
|
||||
registerStorages.cpp
|
||||
transformQueryForExternalDatabase.cpp
|
||||
|
@ -1,3 +1,5 @@
|
||||
DROP TABLE IF EXISTS table_with_range;
|
||||
|
||||
CREATE TABLE table_with_range
|
||||
(
|
||||
`name` String,
|
||||
@ -6,3 +8,4 @@ CREATE TABLE table_with_range
|
||||
ENGINE = S3('https://storage.yandexcloud.net/my-test-bucket-768/{some,another}_prefix/some_file_{1..3}', 'CSV')
|
||||
SETTINGS input_format_with_names_use_header = 0;
|
||||
|
||||
DROP TABLE IF EXISTS table_with_range;
|
||||
|
Loading…
Reference in New Issue
Block a user