Lower scale of a test

This commit is contained in:
Alexey Milovidov 2021-04-01 18:26:33 +03:00
parent 956dba1d9c
commit bfd042a979
2 changed files with 8 additions and 8 deletions

View File

@ -1,12 +1,12 @@
TSV, false TSV, false
8a984bbbfb127c430f67173f5371c6cb - 6e4ce4996dd0e036d27cb0d2166c8e59 -
TSV, true TSV, true
8a984bbbfb127c430f67173f5371c6cb - 6e4ce4996dd0e036d27cb0d2166c8e59 -
CSV, false CSV, false
ea1c740f03f5dcc43a3044528ad0a98f - ab6b3616f31e8a952c802ca92562e418 -
CSV, true CSV, true
ea1c740f03f5dcc43a3044528ad0a98f - ab6b3616f31e8a952c802ca92562e418 -
JSONCompactEachRow, false JSONCompactEachRow, false
ba1081a754a06ef6563840b2d8d4d327 - 1651b540b43bd6c62446f4c340bf13c7 -
JSONCompactEachRow, true JSONCompactEachRow, true
ba1081a754a06ef6563840b2d8d4d327 - 1651b540b43bd6c62446f4c340bf13c7 -

View File

@ -10,8 +10,8 @@ FORMATS=('TSV' 'CSV' 'JSONCompactEachRow')
for format in "${FORMATS[@]}" for format in "${FORMATS[@]}"
do do
echo "$format, false"; echo "$format, false";
${CLICKHOUSE_CURL} -sS "${CLICKHOUSE_URL}&query=SELECT+ClientEventTime+as+a,MobilePhoneModel+as+b,ClientIP6+as+c+FROM+test.hits+ORDER+BY+a,b,c+Format+$format&output_format_parallel_formatting=false" -d' ' | md5sum ${CLICKHOUSE_CURL} -sS "${CLICKHOUSE_URL}&query=SELECT+ClientEventTime+as+a,MobilePhoneModel+as+b,ClientIP6+as+c+FROM+test.hits+ORDER+BY+a,b,c+LIMIT+1000000+Format+$format&output_format_parallel_formatting=false" -d' ' | md5sum
echo "$format, true"; echo "$format, true";
${CLICKHOUSE_CURL} -sS "${CLICKHOUSE_URL}&query=SELECT+ClientEventTime+as+a,MobilePhoneModel+as+b,ClientIP6+as+c+FROM+test.hits+ORDER+BY+a,b,c+Format+$format&output_format_parallel_formatting=true" -d' ' | md5sum ${CLICKHOUSE_CURL} -sS "${CLICKHOUSE_URL}&query=SELECT+ClientEventTime+as+a,MobilePhoneModel+as+b,ClientIP6+as+c+FROM+test.hits+ORDER+BY+a,b,c+LIMIT+1000000+Format+$format&output_format_parallel_formatting=true" -d' ' | md5sum
done done