From c8666793011d1b4b4751341441dfe50acabd6bf9 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Sat, 11 Nov 2023 21:01:10 +0000 Subject: [PATCH] Ignore *in types Introduced in https://github.com/MaterializeInc/materialize/pull/23130, all unsupported, see failure in https://buildkite.com/materialize/nightlies/builds/5145 --- postgres.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postgres.cc b/postgres.cc index 4b6f64c..028f630 100644 --- a/postgres.cc +++ b/postgres.cc @@ -139,7 +139,8 @@ schema_pqxx::schema_pqxx(std::string &conninfo, bool no_catalog, bool dump_state } r = w.exec("select typname, " "oid, ',' as typdelim, typrelid, typelem, typarray, typtype " - "from pg_type "); + "from pg_type " + "where typname <> '%in'"); for (auto row = r.begin(); row != r.end(); ++row) { string name(row[0].as()); OID oid(row[1].as());