fix tests

This commit is contained in:
Alexander Tokmakov 2019-09-23 13:45:26 +03:00
parent 0080639f79
commit 89280c0ca8
3 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@ CREATE TABLE values_template (d Date, s String, u UInt8, i Int64, f Float64, a A
CREATE TABLE values_template_nullable (d Date, s Nullable(String), u Nullable(UInt8)) ENGINE = Memory;
SET input_format_values_interpret_expressions = 0;
SET input_format_values_deduce_templates_of_expressions = 1;
--(1, lower(replaceAll(_STR_1, 'o', 'a')), _NUM_1 + _NUM_2 + _NUM_3, round(_NUM_4 / _NUM_5), _NUM_6 * CAST(_STR_7, 'Int8'), _ARR_8);
-- _NUM_1: UInt64 -> Int64 -> UInt64

View File

@ -9,7 +9,7 @@ RUN apt-get update -y \
COPY s3downloader /s3downloader
COPY run.sh /run.sh
ENV OPEN_DATASETS="hits"
ENV OPEN_DATASETS="hits values_with_expressions"
ENV PRIVATE_DATASETS="hits_100m_single hits_10m_single"
ENV DOWNLOAD_DATASETS=1

View File

@ -14,6 +14,7 @@ DEFAULT_URL = 'https://clickhouse-datasets.s3.yandex.net'
AVAILABLE_DATASETS = {
'hits': 'hits_v1.tar',
'visits': 'visits_v1.tar',
'values_with_expressions': 'test_values.tar',
'hits_100m_single': 'hits_100m_single.tar',
'hits_1000m_single': 'hits_1000m_single.tar',
'hits_10m_single': 'hits_10m_single.tar',