Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aziz-mu committed Nov 18, 2022
1 parent 38f91f4 commit 673e783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/query_result.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ void QueryResult::writeToCSV(string fileName, char delimiter, char escapeCharact
ofstream file;
file.open(fileName);
shared_ptr<FlatTuple> nextTuple;
assert(!isblank(delimiter));
assert(!isblank(newline));
assert(delimiter != '\0');
assert(newline != '\0');
while (hasNext()) {
nextTuple = getNext();
for (auto idx = 0ul; idx < nextTuple->len(); idx++) {
Expand Down

0 comments on commit 673e783

Please sign in to comment.