-
-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
无法使用kotlin unsigned类型进行扩展 #253
Comments
更新 问题定位到org.ktorm.schema.ColumnBindingHandler[58]的return 因为unsigned type不是基本类型 所以此处返回了null,而外层一个定位不到的地方试图以此为结果转换到java.lang.Long (为什么会有这样的行为啊)然后就抛出了 |
解决方法:暂时先改成 |
3.4.0 版本已兼容无符号整数 |
3.5.0 版本已完全兼容所有内联类型 |
Ktorm version: 3.2.0
扩展的代码
对应的Table object
配合spring boot使用
在User object初始化时报错:
断点可见问题出现在
bindTo { it.id }
推测问题抛出在获取实体列绑定的properties中
The text was updated successfully, but these errors were encountered: