Fixes some be typo (#4714)

This commit is contained in:
Zhengguo Yang
2020-10-13 09:37:15 +08:00
committed by GitHub
parent d73d205de7
commit 75e0ba32a1
130 changed files with 367 additions and 366 deletions

View File

@ -488,7 +488,7 @@ StringVal BitmapFunctions::bitmap_from_string(FunctionContext* ctx, const String
}
std::vector<uint64_t> bits;
// The contructor of `stringpiece` only support int type.
// The constructor of `stringPiece` only support int type.
if ((input.len > INT32_MAX)
|| !SplitStringAndParse({(const char*)input.ptr, (int)input.len}, ",", &safe_strtou64, &bits)) {
return StringVal::null();