Github user kiszk commented on a diff in the pull request:
https://github.com/apache/spark/pull/21080#discussion_r181957835
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/CodeGenerator.scala
---
@@ -575,7 +575,7 @@ class CodegenContext {
if (freshNameIds.contains(fullName)) {
val id = freshNameIds(fullName)
freshNameIds(fullName) = id + 1
- s"$fullName$id"
+ s"${fullName}_$id"
} else {
freshNameIds += fullName -> 1
fullName
--- End diff --
Ah, sorry for my misunderstanding. To change line 581 would work well.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]