From 1873beb41b11bdda3b697afe47cc22f115ee520b Mon Sep 17 00:00:00 2001 From: David Sisson Date: Tue, 15 Aug 2023 00:54:06 -0700 Subject: [PATCH] Ran clang format. --- src/substrait/textplan/parser/SubstraitPlanTypeVisitor.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/substrait/textplan/parser/SubstraitPlanTypeVisitor.cpp b/src/substrait/textplan/parser/SubstraitPlanTypeVisitor.cpp index 3d47206d..5b42d817 100644 --- a/src/substrait/textplan/parser/SubstraitPlanTypeVisitor.cpp +++ b/src/substrait/textplan/parser/SubstraitPlanTypeVisitor.cpp @@ -115,8 +115,7 @@ ::substrait::proto::Type SubstraitPlanTypeVisitor::typeToProto( } try { if (!varChar->length()->isInteger()) { - errorListener_->addError( - ctx->getStart(), "Missing varchar length."); + errorListener_->addError(ctx->getStart(), "Missing varchar length."); break; } int32_t length = std::stoi(varChar->length()->value());