Merge pull request #22446 from ClickHouse/lower-scale-of-a-test

Lower scale of a test
This commit is contained in:
alexey-milovidov 2021-04-02 05:57:27 +03:00 committed by GitHub
commit 6ae99eeeef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

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

View File

@ -10,8 +10,8 @@ FORMATS=('TSV' 'CSV' 'JSONCompactEachRow')
for format in "${FORMATS[@]}"
do
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";
${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