You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sortedBy function supports lambda varargs to allow using multiple sorted columns, eg. sortedBy({ it.salary.desc() }, { it.hireDate.asc() }).
Added bulkInsert & bulkInsertOrUpdate for PostgreSQL. #226
Added more overloaded functions to allow specifying offset & limit separately. #198
Fixed bug of missing catalog & schema in generated insert SQLs. #207, #209
Changed the default transaction isolation to null (stands for the default isolation level of the underlying datastore), not REPEATABLE_READ anymore. #231