aboutsummaryrefslogtreecommitdiff
path: root/scalastyle-config.xml
diff options
context:
space:
mode:
authorKousuke Saruta <sarutak@oss.nttdata.co.jp>2016-04-06 10:57:46 -0700
committerAndrew Or <andrew@databricks.com>2016-04-06 10:57:46 -0700
commit10494feae0c2c1aca545c73ba61af6d8f743c5bb (patch)
tree380c31c75bb83304b01d2012ea1d15e658cb9a89 /scalastyle-config.xml
parent90ca1844865baf96656a9e5efdf56f415f2646be (diff)
downloadspark-10494feae0c2c1aca545c73ba61af6d8f743c5bb.tar.gz
spark-10494feae0c2c1aca545c73ba61af6d8f743c5bb.tar.bz2
spark-10494feae0c2c1aca545c73ba61af6d8f743c5bb.zip
[SPARK-14426][SQL] Merge PerserUtils and ParseUtils
## What changes were proposed in this pull request? We have ParserUtils and ParseUtils which are both utility collections for use during the parsing process. Those names and what they are used for is very similar so I think we can merge them. Also, the original unescapeSQLString method may have a fault. When "\u0061" style character literals are passed to the method, it's not unescaped successfully. This patch fix the bug. ## How was this patch tested? Added a new test case. Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp> Closes #12199 from sarutak/merge-ParseUtils-and-ParserUtils.
Diffstat (limited to 'scalastyle-config.xml')
-rw-r--r--scalastyle-config.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/scalastyle-config.xml b/scalastyle-config.xml
index 37d2ecf48e..33c2cbd293 100644
--- a/scalastyle-config.xml
+++ b/scalastyle-config.xml
@@ -116,7 +116,7 @@ This file is divided into 3 sections:
<check level="error" class="org.scalastyle.file.NewLineAtEofChecker" enabled="true"></check>
- <check level="error" class="org.scalastyle.scalariform.NonASCIICharacterChecker" enabled="true"></check>
+ <check customId="nonascii" level="error" class="org.scalastyle.scalariform.NonASCIICharacterChecker" enabled="true"></check>
<check level="error" class="org.scalastyle.scalariform.SpaceAfterCommentStartChecker" enabled="true"></check>