Fix style error

This commit is contained in:
hcz 2019-03-23 20:20:40 +08:00 committed by GitHub
parent 38ea75748c
commit b74d3501e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,13 +66,13 @@ AggregateFunctionPtr createAggregateFunctionLeastSqr(
#undef FOR_LEASTSQR_TYPES
#undef DISPATCH
throw Exception {
throw Exception(
"Illegal types ("
+ x_arg->getName() + ", " + y_arg->getName()
+ ") of arguments of aggregate function " + name
+ ", must be Native Ints, Native UInts or Floats",
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT
};
);
}
}