From 5da897ac2097ada781ced39beffa6fd72ef4dd7c Mon Sep 17 00:00:00 2001 From: Yakov Olkhovskiy Date: Wed, 17 Jan 2024 00:19:59 +0000 Subject: [PATCH] fix test --- .../0_stateless/02967_http_compressed.reference | Bin 265 -> 760 bytes .../0_stateless/02967_http_compressed.sh | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/queries/0_stateless/02967_http_compressed.reference b/tests/queries/0_stateless/02967_http_compressed.reference index c1b7db4bf732cb986a48bf54ac1de3366198f23e..4af682220899007783d6cf5b1c8a24f606e2b20d 100644 GIT binary patch literal 760 zcmeHFxe>r14C^z6M(_g!#^K$6gkVCQE*&a#(pmQTd?s2z52K*9>@nh9kfe7=4~$&2 xfu$Ds8r`+hOkj-yGoWN-Y6`Q;Mzfk!-@Fi1)LAOy6Fa~A=D4%hxz`{6^#BL}k;wo6 literal 265 xcmaFAfA4!Rs)kUBdbSXT5Ri%iVqpdb22LObG7UM6IE^_?jJO~wfaEaJ1OODPhoJxf diff --git a/tests/queries/0_stateless/02967_http_compressed.sh b/tests/queries/0_stateless/02967_http_compressed.sh index 52eb3d94245..2b2966eae93 100755 --- a/tests/queries/0_stateless/02967_http_compressed.sh +++ b/tests/queries/0_stateless/02967_http_compressed.sh @@ -4,8 +4,8 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) # shellcheck source=../shell_config.sh . "$CURDIR"/../shell_config.sh -curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: gzip' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | gzip -d -curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: br' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | brotli -d -curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: xz' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | xz -d -curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: zstd' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | zstd -d -curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: bz2' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | bzip2 -d +curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: gzip' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | gzip -d | hexdump +curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: br' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | brotli -d | hexdump +curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: xz' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | xz -d | hexdump +curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: zstd' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | zstd -d | hexdump +curl -sS -d 'SELECT 1,2,3,42' -H 'Accept-Encoding: bz2' -X POST "${CLICKHOUSE_URL}&compress=1&enable_http_compression=1" | bzip2 -d | hexdump