Github user zzcclp commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/3032#discussion_r244596104
--- Diff:
integration/spark2/src/main/scala/org/apache/carbondata/spark/util/CarbonSparkUtil.scala
---
@@ -59,13 +64,13 @@ object CarbonSparkUtil {
table)
}
- /**
- * return's the formatted column comment if column comment is present
else empty("")
- *
- * @param carbonColumn
- * @return
- */
- def getColumnComment(carbonColumn: CarbonColumn): String = {
+ /**
+ * return's the formatted column comment if column comment is present
else empty("")
+ *
+ * @param carbonColumn the column of carbonTable
+ * @return string
+ */
+ def getColumnComment (carbonColumn: CarbonColumn): String = {
--- End diff --
remove blank before '('
---