Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jievince committed Jul 13, 2021
1 parent c6445e0 commit b9ad0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validator/OrderByValidator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Status OrderByValidator::validateImpl() {
} else if (!exprProps_.varProps().empty()) {
if (!userDefinedVarNameList_.empty()) {
if (userDefinedVarNameList_.size() != 1) {
return Status::SemanticError("Multiple user defined vars not supported yet.");
return Status::SemanticError("Multiple user defined vars are not supported yet.");
}
userDefinedVarName_ = *userDefinedVarNameList_.begin();
outputs_ = vctx_->getVar(userDefinedVarName_);
Expand Down

0 comments on commit b9ad0d7

Please sign in to comment.