Skip to content
Snippets Groups Projects
Commit 5872a9d8 authored by Yin Huai's avatar Yin Huai
Browse files

[SPARK-11352][SQL] Escape */ in the generated comments.

https://issues.apache.org/jira/browse/SPARK-11352

Author: Yin Huai <yhuai@databricks.com>

Closes #10072 from yhuai/SPARK-11352.
parent 5a8b5fdd
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ abstract class Expression extends TreeNode[Expression] {
ctx.subExprEliminationExprs.get(this).map { subExprState =>
// This expression is repeated meaning the code to evaluated has already been added
// as a function and called in advance. Just use it.
val code = s"/* $this */"
val code = s"/* ${this.toCommentSafeString} */"
GeneratedExpressionCode(code, subExprState.isNull, subExprState.value)
}.getOrElse {
val isNull = ctx.freshName("isNull")
......@@ -103,7 +103,7 @@ abstract class Expression extends TreeNode[Expression] {
val ve = GeneratedExpressionCode("", isNull, primitive)
ve.code = genCode(ctx, ve)
// Add `this` in the comment.
ve.copy(s"/* $this */\n" + ve.code.trim)
ve.copy(s"/* ${this.toCommentSafeString} */\n" + ve.code.trim)
}
}
......@@ -214,6 +214,12 @@ abstract class Expression extends TreeNode[Expression] {
}
override def toString: String = prettyName + flatArguments.mkString("(", ",", ")")
/**
* Returns the string representation of this expression that is safe to be put in
* code comments of generated code.
*/
protected def toCommentSafeString: String = this.toString.replace("*/", "\\*\\/")
}
......
......@@ -33,7 +33,7 @@ trait CodegenFallback extends Expression {
ctx.references += this
val objectTerm = ctx.freshName("obj")
s"""
/* expression: ${this} */
/* expression: ${this.toCommentSafeString} */
java.lang.Object $objectTerm = expressions[${ctx.references.size - 1}].eval(${ctx.INPUT_ROW});
boolean ${ev.isNull} = $objectTerm == null;
${ctx.javaType(this.dataType)} ${ev.value} = ${ctx.defaultValue(this.dataType)};
......
......@@ -98,4 +98,13 @@ class CodeGenerationSuite extends SparkFunSuite with ExpressionEvalHelper {
unsafeRow.getStruct(3, 1).getStruct(0, 2).setInt(1, 4)
assert(internalRow === internalRow2)
}
test("*/ in the data") {
// When */ appears in a comment block (i.e. in /**/), code gen will break.
// So, in Expression and CodegenFallback, we escape */ to \*\/.
checkEvaluation(
EqualTo(BoundReference(0, StringType, false), Literal.create("*/", StringType)),
true,
InternalRow(UTF8String.fromString("*/")))
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment