fix: wrong construction in evalctx (#35772)

issue: #35771

Signed-off-by: chyezh <chyezh@outlook.com>
pull/35783/head
Zhen Ye 2024-08-28 19:21:00 +08:00 committed by GitHub
parent 91223deb91
commit 9b96841ae9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class ExprSet;
class EvalCtx {
public:
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(expr_set_ != nullptr);
// assert(row_ != nullptr);