From 0ac85a3fa3c602610d6d654a50d34537c0285f69 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Mon, 13 Nov 2023 22:47:15 +0000 Subject: [PATCH] Reenable csv_extract --- postgres.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/postgres.cc b/postgres.cc index 1629a7c..034e194 100644 --- a/postgres.cc +++ b/postgres.cc @@ -414,7 +414,6 @@ schema_pqxx::schema_pqxx(std::string &conninfo, bool no_catalog, bool dump_state "AND mz_functions.name <> 'generate_series' " // out of memory on large data sets "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[2] <> (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 + ") ");