Skip to content

Commit

Permalink
remove whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Jan 9, 2024
1 parent 1aa3742 commit 939d370
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions logdb/logdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ FROM (%v) e
}

if filter.Order == DESC {
subQuery += " ORDER BY seq DESC "
subQuery += " ORDER BY seq DESC"
} else {
subQuery += " ORDER BY seq ASC "
subQuery += " ORDER BY seq ASC"
}

if filter.Options != nil {
Expand Down Expand Up @@ -206,9 +206,9 @@ FROM (%v) t
}

if filter.Order == DESC {
subQuery += " ORDER BY seq DESC "
subQuery += " ORDER BY seq DESC"
} else {
subQuery += " ORDER BY seq ASC "
subQuery += " ORDER BY seq ASC"
}

if filter.Options != nil {
Expand Down

0 comments on commit 939d370

Please sign in to comment.