|
@@ -122,8 +122,8 @@ object diff_data_20250319 {
|
|
featureCount(key) = featureCount.getOrElse(key, 0) + 1
|
|
featureCount(key) = featureCount.getOrElse(key, 0) + 1
|
|
}
|
|
}
|
|
case _ =>
|
|
case _ =>
|
|
- val str1 = value1.toString
|
|
|
|
- val str2 = value2.toString
|
|
|
|
|
|
+ val str1 = if (value1 != null) value1.toString else ""
|
|
|
|
+ val str2 = if (value2 != null) value2.toString else ""
|
|
if (str1 != str2) {
|
|
if (str1 != str2) {
|
|
featureCount(key) = featureCount.getOrElse(key, 0) + 1
|
|
featureCount(key) = featureCount.getOrElse(key, 0) + 1
|
|
}
|
|
}
|