fix typo exception name

This commit is contained in:
tao jiang 2020-08-21 08:53:00 +08:00
parent c5a7b1c456
commit 294aa985e0

View File

@ -141,7 +141,7 @@ bool RowInputFormatWithDiagnosticInfo::deserializeFieldAndPrintDiagnosticInfo(co
else else
out << "ERROR\n"; out << "ERROR\n";
// Print exception message // Print exception message
out << getExceptionMessage(e, false) << '\n'; out << getExceptionMessage(exception, false) << '\n';
return false; return false;
} }