We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e504c3e commit 3e40a92Copy full SHA for 3e40a92
mllib/src/main/scala/org/apache/spark/ml/clustering/PowerIterationClustering.scala
@@ -235,8 +235,8 @@ class PowerIterationClustering private[clustering] (
235
uncastPredictions.withColumn($(idCol), col($(idCol)).cast(LongType))
236
case otherType =>
237
throw new IllegalArgumentException(s"PowerIterationClustering had an unexpected error: " +
238
- s"ID col was found to be of type $otherType, despite initial schema checks. Please " +
239
- s"report this bug.")
+ s"ID col was found to be of type ${otherType.simpleString}, despite initial schema " +
+ s"checks. Please report this bug.")
240
}
241
242
0 commit comments