Fix ReconStats computation data extension operation

This commit is contained in:
Antonin Delpeuch 2019-03-05 09:32:36 +00:00
parent af8608e897
commit 465b025ace

View File

@ -221,8 +221,9 @@ public class DataExtensionChange implements Change {
_identifierSpace,
_schemaSpace,
columnType));
if (columnType != null) {
column.setReconStats(ReconStats.create(project, cellIndex));
ReconStats reconStats = ReconStats.create(project, cellIndex);
if (reconStats.matchedTopics > 0) {
column.setReconStats(reconStats);
}
try {