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 (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
+
"AND mz_functions.name <> 'redact_sql' "// Expected a keyword at the beginning of a statement, found ...
421
422
"AND mz_functions.name <> 'map_build' "// map_build(text list) does not exist
422
423
"AND mz_functions.name <> 'parse_catalog_privileges' "// TODO: Reenable when fixed https://github.com/MaterializeInc/database-issues/issues/11261
423
424
"AND NOT (" + procedure_is_aggregate + " or " + procedure_is_window + ") ");
0 commit comments