Skip to content

Commit

Permalink
Hotfix #1 for Commit: 91160db
Browse files Browse the repository at this point in the history
  • Loading branch information
Tallerik committed Jul 19, 2019
1 parent 91160db commit c294a0a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/de/tallerik/MySQL.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,7 @@ public Result rowSelect(Select s) {
} else {
columns = s.getColumns();
}
lsql = "# noinspection SqlResolveForFile
SELECT " + columns + " FROM " + s.getTable();
lsql = "SELECT " + columns + " FROM " + s.getTable();
if(s.getFilter() != null && !s.getFilter().equals("")) {
lsql = lsql + " WHERE " + s.getFilter();
}
Expand Down

0 comments on commit c294a0a

Please sign in to comment.