@@ -1253,10 +1253,8 @@ namespace orc {
12531253 stripeTotalLength >= fileLength) {
12541254 std::stringstream msg;
12551255 msg << " Malformed StripeInformation at stripe index " << currentStripe_
1256- << " : fileLength=" << fileLength
1257- << " , StripeInfo=(offset=" << stripeOffset
1258- << " , indexLength=" << indexLength
1259- << " , dataLength=" << dataLength
1256+ << " : fileLength=" << fileLength << " , StripeInfo=(offset=" << stripeOffset
1257+ << " , indexLength=" << indexLength << " , dataLength=" << dataLength
12601258 << " , footerLength=" << footerLength << " )" ;
12611259 throw ParseError (msg.str ());
12621260 }
@@ -1664,8 +1662,7 @@ namespace orc {
16641662 addOverflow (tailSize, footerSize, &tailSize) || tailSize >= fileLength) {
16651663 std::stringstream msg;
16661664 msg << " Invalid tail size: footerSize=" << footerSize
1667- << " , postscriptLength=" << postscriptLength
1668- << " , fileLength=" << fileLength;
1665+ << " , postscriptLength=" << postscriptLength << " , fileLength=" << fileLength;
16691666 throw ParseError (msg.str ());
16701667 }
16711668 uint64_t footerOffset;
0 commit comments