Skip to content

Commit

Permalink
Fix pushdown JSON_EXISTS on runtime version 4. (#6332)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony-Romanov authored Jul 5, 2024
1 parent 43514cd commit 2c3cdc6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ydb/core/kqp/query_compiler/kqp_olap_compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -856,6 +856,8 @@ TTypedColumn GetOrCreateColumnIdAndType(const TExprBase& node, TKqpOlapCompileCo
return BuildLogicalNot(maybeNot.Cast().Value(), ctx);
} else if (const auto& maybeJsonValue = node.Maybe<TKqpOlapJsonValue>()) {
return ConvertJsonValueToColumn(maybeJsonValue.Cast(), ctx);
} else if (const auto& maybeJsonValue = node.Maybe<TKqpOlapJsonExists>()) {
return CompileJsonExists(maybeJsonValue.Cast(), ctx);
} else if (const auto& maybeApply = node.Maybe<TKqpOlapApply>()) {
return CompileYqlKernelScalarApply(maybeApply.Cast(), ctx);
}
Expand Down

0 comments on commit 2c3cdc6

Please sign in to comment.