提交 3cc5f839 authored 作者: Thomas Mueller's avatar Thomas Mueller

Fix a null pointer exception.

上级 ba9bb532
...@@ -269,7 +269,7 @@ public class DbContextRule implements Rule { ...@@ -269,7 +269,7 @@ public class DbContextRule implements Rule {
break; break;
} }
} }
if (table != null) { if (table != null && table.columns != null) {
for (int j = 0; j < table.columns.length; j++) { for (int j = 0; j < table.columns.length; j++) {
String columnName = table.columns[j].name; String columnName = table.columns[j].name;
if (!StringUtils.toUpperEnglish(columnName).startsWith(columnPattern)) { if (!StringUtils.toUpperEnglish(columnName).startsWith(columnPattern)) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论