risingwave_frontend::binder::expr

Constant CASE_WHEN_ARMS_OPTIMIZE_LIMIT

source
const CASE_WHEN_ARMS_OPTIMIZE_LIMIT: usize = 30;
Expand description

The limit arms for case-when expression When the number of condition arms exceed this limit, we will try optimize the case-when expression to ConstantLookupExpression Check case.rs for details.