Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Fu Zhe <[email protected]>
  • Loading branch information
SchrodingerZhu and fuzhe1989 authored Mar 16, 2022
1 parent 613357c commit 378ec0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbms/src/Functions/tests/gtest_strings_simd_consistency.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ TEST(StringsLowerUpperAscii, Random)
auto seed = device();
std::cout << "seeded with: " << seed << std::endl;
std::vector<UInt8> data(limit + 1);
std::vector<UInt8> res_new(limit + 1);
std::vector<UInt8> res_old(limit + 1);
std::vector<UInt8> res_new(limit + 1, 0);
std::vector<UInt8> res_old(limit + 1, 0);
std::default_random_engine eng(seed);
std::uniform_int_distribution<UInt8> dist(
'A',
Expand Down

0 comments on commit 378ec0d

Please sign in to comment.