Skip to content

Commit

Permalink
Don't use csv_extract
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Oct 27, 2023
1 parent cfe1e81 commit 9f90d46
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions postgres.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9f90d46

Please sign in to comment.