Repository: spark
Updated Branches:
  refs/heads/master 6c70a38c2 -> a9abff281


[SPARK-20119][TEST-MAVEN] Fix the test case fail in 
DataSourceScanExecRedactionSuite

### What changes were proposed in this pull request?
Changed the pattern to match the first n characters in the location field so 
that the string truncation does not affect it.

### How was this patch tested?
N/A

Author: Xiao Li <gatorsm...@gmail.com>

Closes #17448 from gatorsmile/fixTestCAse.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a9abff28
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a9abff28
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a9abff28

Branch: refs/heads/master
Commit: a9abff281bcb15fdc91111121c8bcb983a9d91cb
Parents: 6c70a38
Author: Xiao Li <gatorsm...@gmail.com>
Authored: Tue Mar 28 09:37:28 2017 +0200
Committer: Herman van Hovell <hvanhov...@databricks.com>
Committed: Tue Mar 28 09:37:28 2017 +0200

----------------------------------------------------------------------
 .../spark/sql/execution/DataSourceScanExecRedactionSuite.scala     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/a9abff28/sql/core/src/test/scala/org/apache/spark/sql/execution/DataSourceScanExecRedactionSuite.scala
----------------------------------------------------------------------
diff --git 
a/sql/core/src/test/scala/org/apache/spark/sql/execution/DataSourceScanExecRedactionSuite.scala
 
b/sql/core/src/test/scala/org/apache/spark/sql/execution/DataSourceScanExecRedactionSuite.scala
index 986fa87..05a2b2c 100644
--- 
a/sql/core/src/test/scala/org/apache/spark/sql/execution/DataSourceScanExecRedactionSuite.scala
+++ 
b/sql/core/src/test/scala/org/apache/spark/sql/execution/DataSourceScanExecRedactionSuite.scala
@@ -31,7 +31,7 @@ class DataSourceScanExecRedactionSuite extends QueryTest with 
SharedSQLContext {
 
   override def beforeAll(): Unit = {
     sparkConf.set("spark.redaction.string.regex",
-      "spark-[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}")
+      "file:/[\\w_]+")
     super.beforeAll()
   }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to