Skip to content
Snippets Groups Projects
Commit 57647768 authored by Andrii Protas's avatar Andrii Protas
Browse files

Removed unnecessary variable

parent deb44c2b
No related branches found
No related tags found
No related merge requests found
Pipeline #40911 failed
......@@ -19,7 +19,6 @@ int64_t sum_extendedprice(const std::string& file_name) {
CsvParser lineitem = CsvParser(f).delimiter('|');
int64_t price_sum = 0;
uint64_t field_number = 0;
for (auto row : lineitem) {
price_sum += ToInt(row[5]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment