You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2019/05/22 04:52:41 UTC

[spark] branch master updated: [SPARK-27800][SQL][DOC] Fix wrong answer of example for BitwiseXor

This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new bf61799  [SPARK-27800][SQL][DOC] Fix wrong answer of example for BitwiseXor
bf61799 is described below

commit bf617996aa95dd51be15da64ba9254f98697560c
Author: Liu Xiao <hh...@gmail.com>
AuthorDate: Tue May 21 21:52:19 2019 -0700

    [SPARK-27800][SQL][DOC] Fix wrong answer of example for BitwiseXor
    
    ## What changes were proposed in this pull request?
    
    Fix example for bitwise xor function. 3 ^ 5 should be 6 rather than 2.
    - See https://spark.apache.org/docs/latest/api/sql/index.html#_14
    
    ## How was this patch tested?
    
    manual tests
    
    Closes #24669 from alex-lx/master.
    
    Authored-by: Liu Xiao <hh...@gmail.com>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 .../org/apache/spark/sql/catalyst/expressions/bitwiseExpressions.scala  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/bitwiseExpressions.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/bitwiseExpressions.scala
index cc24e39..c766bd8 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/bitwiseExpressions.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/bitwiseExpressions.scala
@@ -95,7 +95,7 @@ case class BitwiseOr(left: Expression, right: Expression) extends BinaryArithmet
   examples = """
     Examples:
       > SELECT 3 _FUNC_ 5;
-       2
+       6
   """)
 case class BitwiseXor(left: Expression, right: Expression) extends BinaryArithmetic {
 


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