From 667c203032a242b5ea8fb12871a881b667a3b745 Mon Sep 17 00:00:00 2001 From: Josh Ventura Date: Wed, 29 Jul 2026 13:41:47 -0700 Subject: [PATCH] Update import_schema_1.out for ClickHouse's new Float32 rendering 0c85edc updated the primary expected output for CH 26.7+'s changed Float32 min/max rendering, but missed the PG13-17 alternate (import_schema_1.out), which still carried the pre-26.7 values. Since postgres.yml installs "latest" ClickHouse unpinned across the whole PG version matrix, every job now hits the new rendering, leaving PG13-17 comparing against a stale expected file. --- test/expected/import_schema_1.out | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/expected/import_schema_1.out b/test/expected/import_schema_1.out index d6287a91..65adc428 100644 --- a/test/expected/import_schema_1.out +++ b/test/expected/import_schema_1.out @@ -599,8 +599,8 @@ SELECT clickhouse_raw_query($$ $$); clickhouse_raw_query -------------------------------------------------------------------------------------------------------------------------------------------------------- - -128 -32768 -2147483648 -9223372036854775808 0 0 0 0 1.1754942e-38 2.2250738585072014e-308 + - 127 32767 2147483647 9223372036854775807 255 65535 4294967295 18446744073709551615 3.4028233e38 1.7976931348623157e308+ + -128 -32768 -2147483648 -9223372036854775808 0 0 0 0 1.1754944e-38 2.2250738585072014e-308 + + 127 32767 2147483647 9223372036854775807 255 65535 4294967295 18446744073709551615 3.4028235e38 1.7976931348623157e308+ (1 row) @@ -623,8 +623,8 @@ WHERE c1 = 127 ORDER BY c1; c1 | c2 | c3 | c4 | c5 | c6 | c7 | c8 | c9 | c10 ------+--------+-------------+----------------------+-----+-------+------------+----+---------------+------------------------- - -128 | -32768 | -2147483648 | -9223372036854775808 | 0 | 0 | 0 | 0 | 1.1754942e-38 | 2.2250738585072014e-308 - 127 | 32767 | 2147483647 | 9223372036854775807 | 255 | 65535 | 4294967295 | | 3.4028233e+38 | 1.7976931348623157e+308 + -128 | -32768 | -2147483648 | -9223372036854775808 | 0 | 0 | 0 | 0 | 1.1754944e-38 | 2.2250738585072014e-308 + 127 | 32767 | 2147483647 | 9223372036854775807 | 255 | 65535 | 4294967295 | | 3.4028235e+38 | 1.7976931348623157e+308 (2 rows) SELECT * FROM clickhouse.ints WHERE c1 = -128 @@ -635,8 +635,8 @@ WHERE c1 = 127 ORDER BY c1; c1 | c2 | c3 | c4 | c5 | c6 | c7 | c8 | c9 | c10 ------+--------+-------------+----------------------+-----+-------+------------+----+---------------+------------------------- - -128 | -32768 | -2147483648 | -9223372036854775808 | 0 | 0 | 0 | 0 | 1.1754942e-38 | 2.2250738585072014e-308 - 127 | 32767 | 2147483647 | 9223372036854775807 | 255 | 65535 | 4294967295 | | 3.4028233e+38 | 1.7976931348623157e+308 + -128 | -32768 | -2147483648 | -9223372036854775808 | 0 | 0 | 0 | 0 | 1.1754944e-38 | 2.2250738585072014e-308 + 127 | 32767 | 2147483647 | 9223372036854775807 | 255 | 65535 | 4294967295 | | 3.4028235e+38 | 1.7976931348623157e+308 (2 rows) DROP USER MAPPING FOR CURRENT_USER SERVER import_loopback;