Unverified 提交 c31a0e69 authored 作者: openconcerto's avatar openconcerto 提交者: GitHub

Fix ==

上级 659bf5ca
...@@ -319,7 +319,7 @@ public class AlterTableAlterColumn extends SchemaCommand { ...@@ -319,7 +319,7 @@ public class AlterTableAlterColumn extends SchemaCommand {
Column foundCol = null; Column foundCol = null;
for (Iterator<Column> it = newColumns.iterator(); it.hasNext();) { for (Iterator<Column> it = newColumns.iterator(); it.hasNext();) {
Column newCol = it.next(); Column newCol = it.next();
if (newCol.getName() == removeCol.getName()) { if (newCol.getName().equals(removeCol.getName())) {
foundCol = newCol; foundCol = newCol;
break; break;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论