Skip to content

Commit

Permalink
Fixed a new error.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Jun 28, 2023
1 parent 1294815 commit 8f669e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ std::any SubstraitPlanPipelineVisitor::visitPipeline(
const SymbolInfo* rightmostSymbol = rightSymbol;
if (*rightSymbol != SymbolInfo::kUnknown) {
if (rightSymbol->blob.type() != typeid(std::shared_ptr<RelationData>)) {
errorListener_->addError(ctx->getStart(), "blah");
errorListener_->addError(
ctx->getStart(), "Encountered that should be a relation but isn't.");
}
auto rightRelationData =
ANY_CAST(std::shared_ptr<RelationData>, rightSymbol->blob);
Expand Down

0 comments on commit 8f669e1

Please sign in to comment.