Description
In SparkSQLCLIDriver, val and var should strictly follow the Scala syntax.
private var prompt = "spark-sql"
private var continuedPrompt = "".padTo(prompt.length, ' ')
if there is no place to change the variable.We should use 'val' to modify the variable,otherwise 'var'.