MaxGekk commented on a change in pull request #26799: [WIP][SPARK-30170][SQL]
Eliminate compilation warnings: part 1
URL: https://github.com/apache/spark/pull/26799#discussion_r355214847
##########
File path:
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/csv/CSVExprUtilsSuite.scala
##########
@@ -78,7 +78,7 @@ class CSVExprUtilsSuite extends SparkFunSuite {
// null character, expressed in Unicode literal syntax
("""\u0000""", Some("\u0000"), None),
// and specified directly
- ("\0", Some("\u0000"), None)
+ ("\u0000", Some("\u0000"), None)
Review comment:
```
Warning:Warning:line (81)Octal escape literals are deprecated, use \u0000
instead.
("\0", Some("\u0000"), None)
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]