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

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new b5d266d589 Publish built docs triggered by 
9b5733fe618aecdd6e78eae7ef3135a0e9663744
b5d266d589 is described below

commit b5d266d589820bb70f08a61a0288992ed8d91161
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 11 17:37:31 2023 +0000

    Publish built docs triggered by 9b5733fe618aecdd6e78eae7ef3135a0e9663744
---
 _sources/user-guide/expressions.md.txt          | 2 +-
 _sources/user-guide/sql/scalar_functions.md.txt | 4 ++--
 searchindex.js                                  | 2 +-
 user-guide/expressions.html                     | 2 +-
 user-guide/sql/scalar_functions.html            | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/_sources/user-guide/expressions.md.txt 
b/_sources/user-guide/expressions.md.txt
index a481e525fe..6d4dea691b 100644
--- a/_sources/user-guide/expressions.md.txt
+++ b/_sources/user-guide/expressions.md.txt
@@ -206,7 +206,7 @@ Unlike to some databases the math functions in Datafusion 
works the same way as
 | array_replace_n(array, from, to, max) | Replaces the first `max` occurrences 
of the specified element with another specified element. `array_replace_n([1, 
2, 2, 3, 2, 1, 4], 2, 5, 2) -> [1, 5, 5, 3, 2, 1, 4]` |
 | array_replace_all(array, from, to)    | Replaces all occurrences of the 
specified element with another specified element. `array_replace_all([1, 2, 2, 
3, 2, 1, 4], 2, 5) -> [1, 5, 5, 3, 5, 1, 4]`              |
 | array_slice(array, index)             | Returns a slice of the array. 
`array_slice([1, 2, 3, 4, 5, 6, 7, 8], 3, 6) -> [3, 4, 5, 6]`                   
                                                           |
-| array_to_string(array, delimeter)     | Converts each element to its text 
representation. `array_to_string([1, 2, 3, 4], ',') -> 1,2,3,4`                 
                                                       |
+| array_to_string(array, delimiter)     | Converts each element to its text 
representation. `array_to_string([1, 2, 3, 4], ',') -> 1,2,3,4`                 
                                                       |
 | cardinality(array)                    | Returns the total number of elements 
in the array. `cardinality([[1, 2, 3], [4, 5, 6]]) -> 6`                        
                                                    |
 | make_array(value1, [value2 [, ...]])  | Returns an Arrow array using the 
specified input expressions. `make_array(1, 2, 3) -> [1, 2, 3]`                 
                                                        |
 | trim_array(array, n)                  | Deprecated                           
                                                                                
                                                    |
diff --git a/_sources/user-guide/sql/scalar_functions.md.txt 
b/_sources/user-guide/sql/scalar_functions.md.txt
index fc62938502..cd7245b347 100644
--- a/_sources/user-guide/sql/scalar_functions.md.txt
+++ b/_sources/user-guide/sql/scalar_functions.md.txt
@@ -2166,14 +2166,14 @@ array_slice(array, begin, end)
 Converts each element to its text representation.
 
 ```
-array_to_string(array, delimeter)
+array_to_string(array, delimiter)
 ```
 
 #### Arguments
 
 - **array**: Array expression.
   Can be a constant, column, or function, and any combination of array 
operators.
-- **delimeter**: Array element separator.
+- **delimiter**: Array element separator.
 
 #### Example
 
diff --git a/searchindex.js b/searchindex.js
index 393dbfa71e..157960fb3a 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["contributor-guide/architecture", 
"contributor-guide/communication", "contributor-guide/index", 
"contributor-guide/quarterly_roadmap", "contributor-guide/roadmap", 
"contributor-guide/specification/index", 
"contributor-guide/specification/invariants", 
"contributor-guide/specification/output-field-name-semantic", "index", 
"library-user-guide/adding-udfs", "library-user-guide/building-logical-plans", 
"library-user-guide/catalogs", "library-user-guide/custom-tab [...]
\ No newline at end of file
+Search.setIndex({"docnames": ["contributor-guide/architecture", 
"contributor-guide/communication", "contributor-guide/index", 
"contributor-guide/quarterly_roadmap", "contributor-guide/roadmap", 
"contributor-guide/specification/index", 
"contributor-guide/specification/invariants", 
"contributor-guide/specification/output-field-name-semantic", "index", 
"library-user-guide/adding-udfs", "library-user-guide/building-logical-plans", 
"library-user-guide/catalogs", "library-user-guide/custom-tab [...]
\ No newline at end of file
diff --git a/user-guide/expressions.html b/user-guide/expressions.html
index f82df021c2..02e77ca764 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -949,7 +949,7 @@ expressions such as <code class="docutils literal 
notranslate"><span class="pre"
 <tr class="row-odd"><td><p>array_slice(array, index)</p></td>
 <td><p>Returns a slice of the array. <code class="docutils literal 
notranslate"><span class="pre">array_slice([1,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">4,</span> 
<span class="pre">5,</span> <span class="pre">6,</span> <span 
class="pre">7,</span> <span class="pre">8],</span> <span class="pre">3,</span> 
<span class="pre">6)</span> <span class="pre">-&gt;</span> <span 
class="pre">[3,</span> <span class="pre">4,</span> <span class="pre">5,</span> 
<s [...]
 </tr>
-<tr class="row-even"><td><p>array_to_string(array, delimeter)</p></td>
+<tr class="row-even"><td><p>array_to_string(array, delimiter)</p></td>
 <td><p>Converts each element to its text representation. <code class="docutils 
literal notranslate"><span class="pre">array_to_string([1,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">4],</span> 
<span class="pre">',')</span> <span class="pre">-&gt;</span> <span 
class="pre">1,2,3,4</span></code></p></td>
 </tr>
 <tr class="row-odd"><td><p>cardinality(array)</p></td>
diff --git a/user-guide/sql/scalar_functions.html 
b/user-guide/sql/scalar_functions.html
index 78dccb1d5d..f8d6d9e90c 100644
--- a/user-guide/sql/scalar_functions.html
+++ b/user-guide/sql/scalar_functions.html
@@ -5148,7 +5148,7 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <section id="array-to-string">
 <h3><code class="docutils literal notranslate"><span 
class="pre">array_to_string</span></code><a class="headerlink" 
href="#array-to-string" title="Link to this heading">ΒΆ</a></h3>
 <p>Converts each element to its text representation.</p>
-<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_to_string</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">delimeter</span><span class="p">)</span>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_to_string</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">delimiter</span><span class="p">)</span>
 </pre></div>
 </div>
 <section id="id135">
@@ -5156,7 +5156,7 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <ul class="simple">
 <li><p><strong>array</strong>: Array expression.
 Can be a constant, column, or function, and any combination of array 
operators.</p></li>
-<li><p><strong>delimeter</strong>: Array element separator.</p></li>
+<li><p><strong>delimiter</strong>: Array element separator.</p></li>
 </ul>
 </section>
 <section id="id136">

Reply via email to