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/materialize/issues/18043
418
420
"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
419
421
"AND mz_functions.name <> 'pretty_sql' "// Expected a keyword at the beginning of a statement, found ...
422
+
"AND mz_functions.name <> 'map_build' "// map_build(text list) does not exist
"AND NOT (mz_functions.name in ('sum', 'avg', 'avg_internal_v1') AND ret_type.oid = 1186) "// https://github.com/MaterializeInc/materialize/issues/18043
0 commit comments