Skip to content

Commit

Permalink
<3 gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
dey4ss committed May 30, 2023
1 parent 0a6f86f commit 10908ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/select_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ TEST(WindowExpression) {
const auto frame_ends =
std::vector<FrameBound>{{2, kFollowing, false}, {0, kFollowing, true}, {0, kCurrentRow, false}};

for (auto bound_index = 0; bound_index < frame_starts.size(); ++bound_index) {
for (auto bound_index = size_t{0}; bound_index < frame_starts.size(); ++bound_index) {
stmt = (SelectStatement*)result.getStatement(3 + bound_index);
const auto& expected_start = frame_starts[bound_index];
const auto& expected_end = frame_ends[bound_index];
Expand Down

0 comments on commit 10908ec

Please sign in to comment.