提交 4508e3bf 编写于 作者: E Evgeny Fradkin

#3425 Mock data with multiple unique constraints per column

上级 549183cd
......@@ -294,9 +294,7 @@ public class MockDataExecuteWizard extends AbstractToolWizard<DBSDataManipulato
boolean theSame = true;
for (int j = 0; j < valueList.size(); j++) {
if (miltiUniqColumns.contains(valueList.get(j).getAttribute().getName())) {
if ((valueList.get(j) == null && attributeValues.get(j) != null) ||
(valueList.get(j) != null && attributeValues.get(j) == null) ||
(!valueList.get(j).equals(attributeValues.get(j)))) {
if (!CommonUtils.equalObjects(valueList.get(j), attributeValues.get(j))) {
theSame = false;
break;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册