Unverified 提交 c2603283 authored 作者: Noel Grandin's avatar Noel Grandin 提交者: GitHub

Merge pull request #732 from openconcerto/master

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