DataCleaner icon indicating copy to clipboard operation
DataCleaner copied to clipboard

quickanalysis result sometimes throws nullexception

Open tingmen123 opened this issue 3 years ago • 0 comments

the method org.datacleaner.beans.StringAnalyzerResult#getMaxChars should just return Integer instead of returing int ,cause sometimes the method may throw nullexception. @Metric("Max words") public int getMaxWords(InputColumn<?> col) { return (Integer)this.getCrosstab().where("Column", col.getName()).where("Measures", "Max words").get(); }

tingmen123 avatar Jun 01 '22 08:06 tingmen123