From 9f90d4615a77d7c2b6a4dcc4f9edb96e564bb4c0 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Fri, 27 Oct 2023 13:45:48 +0000 Subject: [PATCH] Don't use csv_extract --- postgres.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/postgres.cc b/postgres.cc index ab6ab89..dc5cea4 100644 --- a/postgres.cc +++ b/postgres.cc @@ -286,6 +286,7 @@ schema_pqxx::schema_pqxx(std::string &conninfo, bool no_catalog) : c(conninfo) "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 NOT (" + procedure_is_aggregate + " or " + procedure_is_window + ") "); for (auto row : r) {