Konstantin Orlov created IGNITE-24732:
-----------------------------------------
Summary: Sql. Avoid expression lookup on every expression
invocation
Key: IGNITE-24732
URL: https://issues.apache.org/jira/browse/IGNITE-24732
Project: Ignite
Issue Type: Bug
Components: sql
Reporter: Konstantin Orlov
IGNITE-21558 introduced an issue where almost every sql expression looked up in
the expression cache on every invocation. For example:
{code}
Predicate<RowT> pred = row -> expressionFactory.predicate(rel.getCondition(),
rel.getRowType()).test(ctx, row);
{code}
The problem is that call to expression factory is inside of the lambda.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)