Skip to content

Commit

Permalink
Disable generate_series
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Oct 2, 2023
1 parent 48ff8d6 commit be46e60
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 @@ -300,6 +300,7 @@ schema_pqxx::schema_pqxx(std::string &conninfo, bool no_catalog) : c(conninfo)
"AND NOT mz_functions.name like 'mz_%_oid' " // common "does not exist" errors
"AND mz_functions.name <> 'mz_global_id_to_name' " // common "does not exist" errors
"AND mz_functions.name <> 'date_bin_hopping' " // the date_bin_hopping function is not supported
"AND mz_functions.name <> 'generate_series' " // out of memory on large data sets
"AND NOT (" + procedure_is_aggregate + " or " + procedure_is_window + ") ");

for (auto row : r) {
Expand Down

0 comments on commit be46e60

Please sign in to comment.