Skip to content

Commit

Permalink
updated to version 2.2.1. fixed issue where COLLATE wasn't appended p…
Browse files Browse the repository at this point in the history
…roperly
  • Loading branch information
Andrew Grosner committed Jul 3, 2015
1 parent 9c0d36d commit ea7cae5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public String getQuery() {
}
queryBuilder.appendSpace().append(ascending ? "ASC" : "DESC");
if (orderByCollation != null) {
queryBuilder.appendSpace().appendSpaceSeparated(orderByCollation);
queryBuilder.appendSpace().append("COLLATE").appendSpaceSeparated(orderByCollation);
}
}
return queryBuilder.getQuery();
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.2.0
version=2.2.1
version_code=1
group=com.raizlabs.android

Expand Down

0 comments on commit ea7cae5

Please sign in to comment.