-- partitioned table: two partitions, each containing a t-digest with vastly -- different compression values CREATE TABLE combine_crash_test(k int, d tdigest) PARTITION BY LIST (k); ERROR: syntax error at or near "PARTITION" LINE 1: ...REATE TABLE combine_crash_test(k int, d tdigest) PARTITION ... ^ CREATE TABLE combine_crash_test_1 PARTITION OF combine_crash_test FOR VALUES IN (1); ERROR: syntax error at or near "PARTITION" LINE 1: CREATE TABLE combine_crash_test_1 PARTITION OF digest_combi... ^ CREATE TABLE combine_crash_test_2 PARTITION OF combine_crash_test FOR VALUES IN (2); ERROR: syntax error at or near "PARTITION" LINE 1: CREATE TABLE combine_crash_test_2 PARTITION OF digest_combi... ^ -- comp=10: BUFFER_SIZE=100 slots INSERT INTO combine_crash_test SELECT 1, tdigest(v::float8, 10) FROM generate_series(1,100) v; ERROR: relation "combine_crash_test" does not exist LINE 1: INSERT INTO combine_crash_test SELECT 1, tdigest(v::float8,... ^ -- comp=10000: BUFFER_SIZE=10000 slots INSERT INTO combine_crash_test SELECT 2, tdigest(v::float8, 10000) FROM generate_series(1,10000) v; ERROR: relation "combine_crash_test" does not exist LINE 1: INSERT INTO combine_crash_test SELECT 2, tdigest(v::float8,... ^ -- enough data to reliably trigger partitionwise aggregate INSERT INTO combine_crash_test SELECT * FROM combine_crash_test; ERROR: relation "combine_crash_test" does not exist LINE 1: INSERT INTO combine_crash_test SELECT * FROM digest_combine... ^ INSERT INTO combine_crash_test SELECT * FROM combine_crash_test; ERROR: relation "combine_crash_test" does not exist LINE 1: INSERT INTO combine_crash_test SELECT * FROM digest_combine... ^ INSERT INTO combine_crash_test SELECT * FROM combine_crash_test; ERROR: relation "combine_crash_test" does not exist LINE 1: INSERT INTO combine_crash_test SELECT * FROM digest_combine... ^ ANALYZE combine_crash_test; ERROR: relation "combine_crash_test" does not exist -- force partitionwise parallel aggregate SET enable_partitionwise_aggregate = on; ERROR: unrecognized configuration parameter "enable_partitionwise_aggregate" SET max_parallel_workers_per_gather = 2; SET parallel_leader_participation = off; ERROR: unrecognized configuration parameter "parallel_leader_participation" SET parallel_setup_cost = 0; SET parallel_tuple_cost = 0; SET min_parallel_table_scan_size = 0; ERROR: unrecognized configuration parameter "min_parallel_table_scan_size" -- tdigest_combine(small, huge) EXPLAIN (COSTS OFF) SELECT tdigest(d) FROM combine_crash_test; ERROR: relation "combine_crash_test" does not exist LINE 2: SELECT tdigest(d) FROM combine_crash_test; ^ SELECT tdigest(d) FROM combine_crash_test; ERROR: relation "combine_crash_test" does not exist LINE 1: SELECT tdigest(d) FROM combine_crash_test; ^ DROP TABLE combine_crash_test; ERROR: table "combine_crash_test" does not exist