MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / test_trace

Function test_trace

src/expr/src/interpret.rs:2461–2471  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2459
2460 #[mz_ore::test]
2461 fn test_trace() {
2462 use super::Trace;
2463
2464 let expr = MirScalarExpr::column(0).call_binary(
2465 MirScalarExpr::column(1)
2466 .call_binary(MirScalarExpr::column(3).call_unary(NegInt64), AddInt64),
2467 Gte,
2468 );
2469 let summary = Trace.expr(&expr);
2470 assert!(summary.pushdownable());
2471 }
2472}

Callers

nothing calls this directly

Calls 3

call_binaryMethod · 0.45
call_unaryMethod · 0.45
exprMethod · 0.45

Tested by

no test coverage detected