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, _identifierSpace,
_schemaSpace, _schemaSpace,
columnType)); columnType));
if (columnType != null) { ReconStats reconStats = ReconStats.create(project, cellIndex);
column.setReconStats(ReconStats.create(project, cellIndex)); if (reconStats.matchedTopics > 0) {
column.setReconStats(reconStats);
} }
try { try {