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

yamamuro pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new bc29602  [SQL][DOC][MINOR] Corrects input table names in the examples 
of CREATE FUNCTION doc
bc29602 is described below

commit bc29602e740393aa00c3154986000eaf1be2f965
Author: iRakson <raksonrak...@gmail.com>
AuthorDate: Thu Oct 1 20:50:16 2020 +0900

    [SQL][DOC][MINOR] Corrects input table names in the examples of CREATE 
FUNCTION doc
    
    ### What changes were proposed in this pull request?
    Fix Typo
    
    ### Why are the changes needed?
    To maintain consistency.
    Correct table name should be used for SELECT command.
    
    ### Does this PR introduce _any_ user-facing change?
    Yes. Now CREATE FUNCTION doc will show the correct name of table.
    
    ### How was this patch tested?
    Manually. Doc changes.
    
    Closes #29920 from iRakson/fixTypo.
    
    Authored-by: iRakson <raksonrak...@gmail.com>
    Signed-off-by: Takeshi Yamamuro <yamam...@apache.org>
    (cherry picked from commit d3dbe1a9076c8a76be0590ca071bfbec6114813b)
    Signed-off-by: Takeshi Yamamuro <yamam...@apache.org>
---
 docs/sql-ref-syntax-ddl-create-function.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/sql-ref-syntax-ddl-create-function.md 
b/docs/sql-ref-syntax-ddl-create-function.md
index aa6c1fa..dfa4f4f 100644
--- a/docs/sql-ref-syntax-ddl-create-function.md
+++ b/docs/sql-ref-syntax-ddl-create-function.md
@@ -112,7 +112,7 @@ SHOW USER FUNCTIONS;
 +------------------+
 
 -- Invoke the function. Every selected value should be incremented by 10.
-SELECT simple_udf(c1) AS function_return_value FROM t1;
+SELECT simple_udf(c1) AS function_return_value FROM test;
 +---------------------+
 |function_return_value|
 +---------------------+
@@ -150,7 +150,7 @@ CREATE OR REPLACE FUNCTION simple_udf AS 'SimpleUdfR'
     USING JAR '/tmp/SimpleUdfR.jar';
 
 -- Invoke the function. Every selected value should be incremented by 20.
-SELECT simple_udf(c1) AS function_return_value FROM t1;
+SELECT simple_udf(c1) AS function_return_value FROM test;
 +---------------------+
 |function_return_value|
 +---------------------+


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

Reply via email to