Merge pull request #1697 from ebean-orm/feature/1695-binary

#1695 - For MySql like remove the binary keyword + Add caseSensitiveCollation configuration option
This commit is contained in:
Rob Bygrave
2019-05-16 19:46:38 +12:00
committed by GitHub
27 changed files with 243 additions and 91 deletions
@@ -596,7 +596,7 @@ public class EqlParserTest extends BaseTestCase {
ResetBasicData.reset();
Query<Customer> query = parse("limit 10 offset 5");
Query<Customer> query = parse("order by name limit 10 offset 5");
query.findList();
if (isH2()) {
assertThat(query.getGeneratedSql()).contains(" limit 10 offset 5");