You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"and not (nspname in ('mz_catalog', 'pg_catalog', 'mz_internal', 'information_schema', 'mz_introspection') and atttypid = 18) "// Expected, see https://github.com/MaterializeInc/materialize/issues/17899
273
+
"and not (nspname in ('mz_catalog', 'pg_catalog', 'mz_internal', 'information_schema', 'mz_introspection') and atttypid = 18) "// Expected, see https://github.com/MaterializeInc/database-issues/issues/5222
"AND mz_functions.name <> 'mz_global_id_to_name' "// common "does not exist" errors
414
414
"AND mz_functions.name <> 'date_bin_hopping' "// the date_bin_hopping function is not supported
415
415
"AND mz_functions.name <> 'generate_series' "// out of memory on large data sets
416
-
"AND NOT mz_functions.name like '%recv' "// https://github.com/MaterializeInc/materialize/issues/17870
416
+
"AND NOT mz_functions.name like '%recv' "// https://github.com/MaterializeInc/database-issues/issues/5211
417
417
"AND mz_functions.name <> 'pg_cancel_backend' "// pg_cancel_backend in this position not yet supported
418
-
"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
418
+
"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/database-issues/issues/5285
419
419
"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
420
420
"AND mz_functions.name <> 'pretty_sql' "// Expected a keyword at the beginning of a statement, found ...
421
421
"AND mz_functions.name <> 'map_build' "// map_build(text list) does not exist
422
+
"AND mz_functions.name <> 'parse_catalog_privileges' "// TODO: Reenable when fixed https://github.com/MaterializeInc/database-issues/issues/11261
422
423
"AND NOT (" + procedure_is_aggregate + " or " + procedure_is_window + ") ");
"WHERE mz_functions.name not in ('pg_event_trigger_table_rewrite_reason', 'percentile_cont', 'dense_rank', 'cume_dist', 'rank', 'test_rank', 'percent_rank', 'percentile_disc', 'mode', 'test_percentile_disc') "
521
522
"AND mz_functions.name !~ '^ri_fkey_' "
522
-
"AND NOT (mz_functions.name in ('sum', 'avg', 'avg_internal_v1') AND ret_type.oid = 1186) "// https://github.com/MaterializeInc/materialize/issues/18043
"AND NOT (mz_functions.name in ('sum', 'avg', 'avg_internal_v1') AND ret_type.oid = 1186) "// https://github.com/MaterializeInc/database-issues/issues/5285
0 commit comments