v3.3.0
版本发布时间: 2021-01-10 01:50:17
kotlin-orm/ktorm最新发布版本:v4.1.1(2024-09-03 11:39:09)
-
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 - Upgraded Kotlin version to 1.4.21.