mirror of https://github.com/milvus-io/milvus.git
fix: wrong construction in evalctx (#35772)
issue: #35771 Signed-off-by: chyezh <chyezh@outlook.com>pull/35783/head
parent
91223deb91
commit
9b96841ae9
|
@ -31,7 +31,7 @@ class ExprSet;
|
||||||
class EvalCtx {
|
class EvalCtx {
|
||||||
public:
|
public:
|
||||||
EvalCtx(ExecContext* exec_ctx, ExprSet* expr_set, RowVector* row)
|
EvalCtx(ExecContext* exec_ctx, ExprSet* expr_set, RowVector* row)
|
||||||
: exec_ctx_(exec_ctx), expr_set_(expr_set_), row_(row) {
|
: exec_ctx_(exec_ctx), expr_set_(expr_set), row_(row) {
|
||||||
assert(exec_ctx_ != nullptr);
|
assert(exec_ctx_ != nullptr);
|
||||||
assert(expr_set_ != nullptr);
|
assert(expr_set_ != nullptr);
|
||||||
// assert(row_ != nullptr);
|
// assert(row_ != nullptr);
|
||||||
|
|
Loading…
Reference in New Issue