Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Nov 6, 2023
1 parent bfb1c5a commit 030f930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgres.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 030f930

Please sign in to comment.