wenjun-zhu opened a new pull request #1782: [TRAFODION-3264] eliminate unneeded function call in Lob-related functions URL: https://github.com/apache/trafodion/pull/1782 in file core/sql/executor/ExExeUtilLoad.cpp, lines like: ``` ex_expr::exp_return_type exprRetCode = lobTdb().inputExpr_->eval(NULL, workAtp_); ``` call function eval(), with first parameter NULL. Then code in ex_expr::evalClauses() accesses NULL pointer, so the server aborts. As @sandhyasun said, this invocation is unneeded, so remove these code.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
