From 030f93097fb75c226b7e4719e46ef055553b0e41 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Mon, 6 Nov 2023 17:00:49 +0000 Subject: [PATCH] Fix --- postgres.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres.cc b/postgres.cc index cdd44cc..aeb69e9 100644 --- a/postgres.cc +++ b/postgres.cc @@ -414,8 +414,8 @@ schema_pqxx::schema_pqxx(std::string &conninfo, bool no_catalog, bool dump_state "AND NOT mz_functions.name like '%recv' " // https://github.com/MaterializeInc/materialize/issues/17870 "AND mz_functions.name <> 'pg_cancel_backend' " // pg_cancel_backend in this position not yet supported "AND mz_functions.name <> 'csv_extract' " // https://github.com/MaterializeInc/materialize/issues/22735 - "AND (mz_functions.name <> 'sum' OR mz_functions.return_type_id <> (select id from mz_types where name = 'interval')" // sum(interval) not yet supported, see https://github.com/MaterializeInc/materialize/issues/18043 - "AND (mz_functions.name <> 'timezone' OR mz_functions.argument_type_ids[1] <> (select id from mz_types where name = 'time')" // timezone with time type is intentionally not supported, see https://github.com/MaterializeInc/materialize/pull/22960 + "AND (mz_functions.name <> 'sum' OR mz_functions.return_type_id <> (select id from mz_types where name = 'interval'))" // sum(interval) not yet supported, see https://github.com/MaterializeInc/materialize/issues/18043 + "AND (mz_functions.name <> 'timezone' OR mz_functions.argument_type_ids[1] <> (select id from mz_types where name = 'time'))" // timezone with time type is intentionally not supported, see https://github.com/MaterializeInc/materialize/pull/22960 "AND NOT (" + procedure_is_aggregate + " or " + procedure_is_window + ") "); if (dump_state) {