in tools/automatic_query_fixer/src/main/java/com/google/cloud/bigquery/utils/queryfixer/errors/SqlErrorFactory.java [46:86]
public BigQuerySqlError getError(BigQueryException exception) {
BigQuerySqlError error;
if ((error = tryTableNotFoundError(exception)) != null) {
return error;
}
if ((error = tryUnrecognizedNameError(exception)) != null) {
return error;
}
if ((error = tryFunctionNotFoundError(exception)) != null) {
return error;
}
if ((error = NoMatchingSignatureError.parse(exception)) != null) {
return error;
}
if ((error = tryUnexpectedKeywordError(exception)) != null) {
return error;
}
if ((error = tryIllegalInputCharacterError(exception)) != null) {
return error;
}
if ((error = tryExpectKeywordButGotOthersError(exception)) != null) {
return error;
}
if ((error = tryDuplicateColumnsError(exception)) != null) {
return error;
}
if ((error = tryColumnNotGroupedError(exception)) != null) {
return error;
}
return null;
}