We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MigrationHelper.java 中大量使用 try catch 结构捕获异常, 但是捕获后仅输出了异常日志, 没有真正意义上地处理异常. 这会埋下不少隐患.
MigrationHelper.java
随便举个例子, 比如generateTempTables 时, 哪怕并未成功创建临时表, 迁移依然不会终止, 后续的删除数据库操作仍然会执行, 这样就导致了老数据的遗失.
generateTempTables
有计划处理一下类似隐患吗?
The text was updated successfully, but these errors were encountered:
过去了那么久了,我还是想问,你怎么处理了?
Sorry, something went wrong.
No branches or pull requests
MigrationHelper.java
中大量使用 try catch 结构捕获异常, 但是捕获后仅输出了异常日志, 没有真正意义上地处理异常. 这会埋下不少隐患.随便举个例子, 比如
generateTempTables
时, 哪怕并未成功创建临时表, 迁移依然不会终止, 后续的删除数据库操作仍然会执行, 这样就导致了老数据的遗失.有计划处理一下类似隐患吗?
The text was updated successfully, but these errors were encountered: