Skip to content

Commit

Permalink
Fixed issue #1743
Browse files Browse the repository at this point in the history
  • Loading branch information
lvca committed Oct 17, 2013
1 parent e95121a commit ff2e596
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ protected void parseOrderBy(final String w) {
if (word.length() == 0)
// END CLAUSE: SET AS ASC BY DEFAULT
fieldOrdering = KEYWORD_ASC;
else if (word.equals(KEYWORD_LIMIT)) {
else if (word.equals(KEYWORD_LIMIT) || word.equals(KEYWORD_SKIP)) {
// NEXT CLAUSE: SET AS ASC BY DEFAULT
fieldOrdering = KEYWORD_ASC;
parserGoBack();
Expand Down

0 comments on commit ff2e596

Please sign in to comment.