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 ed0c403f2c Publish built docs triggered by 
729376442138f85e135b28010ca2c0d018955292
ed0c403f2c is described below

commit ed0c403f2c4fb4097b79e6a3e272288563f120c3
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Nov 17 19:41:17 2023 +0000

    Publish built docs triggered by 729376442138f85e135b28010ca2c0d018955292
---
 _sources/user-guide/expressions.md.txt          |   1 +
 _sources/user-guide/sql/scalar_functions.md.txt |  38 +++++
 searchindex.js                                  |   2 +-
 user-guide/expressions.html                     |  11 +-
 user-guide/sql/scalar_functions.html            | 198 ++++++++++++++++--------
 5 files changed, 179 insertions(+), 71 deletions(-)

diff --git a/_sources/user-guide/expressions.md.txt 
b/_sources/user-guide/expressions.md.txt
index 191ef6cd91..257c50dfa4 100644
--- a/_sources/user-guide/expressions.md.txt
+++ b/_sources/user-guide/expressions.md.txt
@@ -235,6 +235,7 @@ Unlike to some databases the math functions in Datafusion 
works the same way as
 | array_to_string(array, delimiter)     | Converts each element to its text 
representation. `array_to_string([1, 2, 3, 4], ',') -> 1,2,3,4`                 
                                                       |
 | array_intersect(array1, array2)       | Returns an array of the elements in 
the intersection of array1 and array2. `array_intersect([1, 2, 3, 4], [5, 6, 3, 
4]) -> [3, 4]`                                       |
 | array_union(array1, array2)           | Returns an array of the elements in 
the union of array1 and array2 without duplicates. `array_union([1, 2, 3, 4], 
[5, 6, 3, 4]) -> [1, 2, 3, 4, 5, 6]`                   |
+| array_except(array1, array2)          | Returns an array of the elements 
that appear in the first array but not in the second. `array_except([1, 2, 3, 
4], [5, 6, 3, 4]) -> [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]`                 
                                                        |
 | range(start [, stop, step])           | Returns an Arrow array between start 
and stop with step. `SELECT range(2, 10, 3) -> [2, 5, 8]`                       
                                                    |
diff --git a/_sources/user-guide/sql/scalar_functions.md.txt 
b/_sources/user-guide/sql/scalar_functions.md.txt
index f9f45a1b0a..eda46ef8a7 100644
--- a/_sources/user-guide/sql/scalar_functions.md.txt
+++ b/_sources/user-guide/sql/scalar_functions.md.txt
@@ -2307,6 +2307,44 @@ array_union(array1, array2)
 
 - list_union
 
+### `array_except`
+
+Returns an array of the elements that appear in the first array but not in the 
second.
+
+```
+array_except(array1, array2)
+```
+
+#### Arguments
+
+- **array1**: Array expression.
+  Can be a constant, column, or function, and any combination of array 
operators.
+- **array2**: Array expression.
+  Can be a constant, column, or function, and any combination of array 
operators.
+
+#### Example
+
+```
+❯ select array_except([1, 2, 3, 4], [5, 6, 3, 4]);
++----------------------------------------------------+
+| array_except([1, 2, 3, 4], [5, 6, 3, 4]);           |
++----------------------------------------------------+
+| [1, 2]                                 |
++----------------------------------------------------+
+❯ select array_except([1, 2, 3, 4], [3, 4, 5, 6]);
++----------------------------------------------------+
+| array_except([1, 2, 3, 4], [3, 4, 5, 6]);           |
++----------------------------------------------------+
+| [3, 4]                                 |
++----------------------------------------------------+
+```
+
+---
+
+#### Aliases
+
+- list_except
+
 ### `cardinality`
 
 Returns the total number of elements in the array.
diff --git a/searchindex.js b/searchindex.js
index 894b366bc3..d4964af55f 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 752a3b8d7c..8f74a20ccd 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -991,16 +991,19 @@ but these operators always return a <code class="docutils 
literal notranslate"><
 <tr class="row-odd"><td><p>array_union(array1, array2)</p></td>
 <td><p>Returns an array of the elements in the union of array1 and array2 
without duplicates. <code class="docutils literal notranslate"><span 
class="pre">array_union([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">3,</span> <span 
class="pre">4])</span> <span class="pre">-&gt;</span> <span 
class="pre">[1,</span> <span class="pre">2,</span> <span class="pre">3,</span> 
[...]
 </tr>
-<tr class="row-even"><td><p>cardinality(array)</p></td>
+<tr class="row-even"><td><p>array_except(array1, array2)</p></td>
+<td><p>Returns an array of the elements that appear in the first array but not 
in the second. <code class="docutils literal notranslate"><span 
class="pre">array_except([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">3,</span> <span 
class="pre">4])</span> <span class="pre">-&gt;</span> <span 
class="pre">[3,</span> <span class="pre">4]</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>cardinality(array)</p></td>
 <td><p>Returns the total number of elements in the array. <code 
class="docutils literal notranslate"><span class="pre">cardinality([[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">-&gt;</span> <span 
class="pre">6</span></code></p></td>
 </tr>
-<tr class="row-odd"><td><p>make_array(value1, [value2 [, …]])</p></td>
+<tr class="row-even"><td><p>make_array(value1, [value2 [, …]])</p></td>
 <td><p>Returns an Arrow array using the specified input expressions. <code 
class="docutils literal notranslate"><span class="pre">make_array(1,</span> 
<span class="pre">2,</span> <span class="pre">3)</span> <span 
class="pre">-&gt;</span> <span class="pre">[1,</span> <span 
class="pre">2,</span> <span class="pre">3]</span></code></p></td>
 </tr>
-<tr class="row-even"><td><p>range(start [, stop, step])</p></td>
+<tr class="row-odd"><td><p>range(start [, stop, step])</p></td>
 <td><p>Returns an Arrow array between start and stop with step. <code 
class="docutils literal notranslate"><span class="pre">SELECT</span> <span 
class="pre">range(2,</span> <span class="pre">10,</span> <span 
class="pre">3)</span> <span class="pre">-&gt;</span> <span 
class="pre">[2,</span> <span class="pre">5,</span> <span 
class="pre">8]</span></code></p></td>
 </tr>
-<tr class="row-odd"><td><p>trim_array(array, n)</p></td>
+<tr class="row-even"><td><p>trim_array(array, n)</p></td>
 <td><p>Deprecated</p></td>
 </tr>
 </tbody>
diff --git a/user-guide/sql/scalar_functions.html 
b/user-guide/sql/scalar_functions.html
index 2b7d70130e..13d2f69fed 100644
--- a/user-guide/sql/scalar_functions.html
+++ b/user-guide/sql/scalar_functions.html
@@ -2451,10 +2451,10 @@
     </ul>
    </li>
    <li class="toc-h3 nav-item toc-entry">
-    <a class="reference internal nav-link" href="#cardinality">
+    <a class="reference internal nav-link" href="#array-except">
      <code class="docutils literal notranslate">
       <span class="pre">
-       cardinality
+       array_except
       </span>
      </code>
     </a>
@@ -2469,6 +2469,32 @@
        Example
       </a>
      </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id147">
+       Aliases
+      </a>
+     </li>
+    </ul>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#cardinality">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       cardinality
+      </span>
+     </code>
+    </a>
+    <ul class="nav section-nav flex-column">
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id148">
+       Arguments
+      </a>
+     </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id149">
+       Example
+      </a>
+     </li>
     </ul>
    </li>
    <li class="toc-h3 nav-item toc-entry">
@@ -2481,12 +2507,12 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id147">
+      <a class="reference internal nav-link" href="#id150">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id148">
+      <a class="reference internal nav-link" href="#id151">
        Example
       </a>
      </li>
@@ -2718,17 +2744,17 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id149">
+      <a class="reference internal nav-link" href="#id152">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id150">
+      <a class="reference internal nav-link" href="#id153">
        Example
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id151">
+      <a class="reference internal nav-link" href="#id154">
        Aliases
       </a>
      </li>
@@ -2753,12 +2779,12 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id152">
+      <a class="reference internal nav-link" href="#id155">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id153">
+      <a class="reference internal nav-link" href="#id156">
        Aliases
       </a>
      </li>
@@ -2783,7 +2809,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id154">
+      <a class="reference internal nav-link" href="#id157">
        Arguments
       </a>
      </li>
@@ -2799,7 +2825,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id155">
+      <a class="reference internal nav-link" href="#id158">
        Arguments
       </a>
      </li>
@@ -2822,7 +2848,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id156">
+      <a class="reference internal nav-link" href="#id159">
        Arguments
       </a>
      </li>
@@ -2845,7 +2871,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id157">
+      <a class="reference internal nav-link" href="#id160">
        Arguments
       </a>
      </li>
@@ -2861,7 +2887,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id158">
+      <a class="reference internal nav-link" href="#id161">
        Arguments
       </a>
      </li>
@@ -2877,7 +2903,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id159">
+      <a class="reference internal nav-link" href="#id162">
        Arguments
       </a>
      </li>
@@ -2893,7 +2919,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id160">
+      <a class="reference internal nav-link" href="#id163">
        Arguments
       </a>
      </li>
@@ -2909,7 +2935,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id161">
+      <a class="reference internal nav-link" href="#id164">
        Arguments
       </a>
      </li>
@@ -2925,7 +2951,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id162">
+      <a class="reference internal nav-link" href="#id165">
        Arguments
       </a>
      </li>
@@ -2948,12 +2974,12 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id163">
+      <a class="reference internal nav-link" href="#id166">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id164">
+      <a class="reference internal nav-link" href="#id167">
        Example
       </a>
      </li>
@@ -2969,12 +2995,12 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id165">
+      <a class="reference internal nav-link" href="#id168">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id166">
+      <a class="reference internal nav-link" href="#id169">
        Example
       </a>
      </li>
@@ -5448,21 +5474,61 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 </ul>
 </section>
 </section>
+<section id="array-except">
+<h3><code class="docutils literal notranslate"><span 
class="pre">array_except</span></code><a class="headerlink" 
href="#array-except" title="Link to this heading">¶</a></h3>
+<p>Returns an array of the elements that appear in the first array but not in 
the second.</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_except</span><span 
class="p">(</span><span class="n">array1</span><span class="p">,</span> <span 
class="n">array2</span><span class="p">)</span>
+</pre></div>
+</div>
+<section id="id145">
+<h4>Arguments<a class="headerlink" href="#id145" title="Link to this 
heading">¶</a></h4>
+<ul class="simple">
+<li><p><strong>array1</strong>: Array expression.
+Can be a constant, column, or function, and any combination of array 
operators.</p></li>
+<li><p><strong>array2</strong>: Array expression.
+Can be a constant, column, or function, and any combination of array 
operators.</p></li>
+</ul>
+</section>
+<section id="id146">
+<h4>Example<a class="headerlink" href="#id146" title="Link to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_except([1, 2, 3, 4], [5, 6, 
3, 4]);
++----------------------------------------------------+
+| array_except([1, 2, 3, 4], [5, 6, 3, 4]);           |
++----------------------------------------------------+
+| [1, 2]                                 |
++----------------------------------------------------+
+❯ select array_except([1, 2, 3, 4], [3, 4, 5, 6]);
++----------------------------------------------------+
+| array_except([1, 2, 3, 4], [3, 4, 5, 6]);           |
++----------------------------------------------------+
+| [3, 4]                                 |
++----------------------------------------------------+
+</pre></div>
+</div>
+</section>
+<hr class="docutils" />
+<section id="id147">
+<h4>Aliases<a class="headerlink" href="#id147" title="Link to this 
heading">¶</a></h4>
+<ul class="simple">
+<li><p>list_except</p></li>
+</ul>
+</section>
+</section>
 <section id="cardinality">
 <h3><code class="docutils literal notranslate"><span 
class="pre">cardinality</span></code><a class="headerlink" href="#cardinality" 
title="Link to this heading">¶</a></h3>
 <p>Returns the total number of elements in the array.</p>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">cardinality</span><span 
class="p">(</span><span class="n">array</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id145">
-<h4>Arguments<a class="headerlink" href="#id145" title="Link to this 
heading">¶</a></h4>
+<section id="id148">
+<h4>Arguments<a class="headerlink" href="#id148" title="Link to this 
heading">¶</a></h4>
 <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>
 </ul>
 </section>
-<section id="id146">
-<h4>Example<a class="headerlink" href="#id146" title="Link to this 
heading">¶</a></h4>
+<section id="id149">
+<h4>Example<a class="headerlink" href="#id149" title="Link to this 
heading">¶</a></h4>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select cardinality([[1, 2, 3, 4], [5, 6, 
7, 8]]);
 +--------------------------------------+
 | cardinality(List([1,2,3,4,5,6,7,8])) |
@@ -5479,15 +5545,15 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">empty</span><span 
class="p">(</span><span class="n">array</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id147">
-<h4>Arguments<a class="headerlink" href="#id147" title="Link to this 
heading">¶</a></h4>
+<section id="id150">
+<h4>Arguments<a class="headerlink" href="#id150" title="Link to this 
heading">¶</a></h4>
 <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>
 </ul>
 </section>
-<section id="id148">
-<h4>Example<a class="headerlink" href="#id148" title="Link to this 
heading">¶</a></h4>
+<section id="id151">
+<h4>Example<a class="headerlink" href="#id151" title="Link to this 
heading">¶</a></h4>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select empty([1]);
 +------------------+
 | empty(List([1])) |
@@ -5600,16 +5666,16 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">make_array</span><span 
class="p">(</span><span class="n">expression1</span><span class="p">[,</span> 
<span class="o">...</span><span class="p">,</span> <span 
class="n">expression_n</span><span class="p">])</span>
 </pre></div>
 </div>
-<section id="id149">
-<h4>Arguments<a class="headerlink" href="#id149" title="Link to this 
heading">¶</a></h4>
+<section id="id152">
+<h4>Arguments<a class="headerlink" href="#id152" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression_n</strong>: Expression to include in the output 
array.
 Can be a constant, column, or function, and any combination of arithmetic or
 string operators.</p></li>
 </ul>
 </section>
-<section id="id150">
-<h4>Example<a class="headerlink" href="#id150" title="Link to this 
heading">¶</a></h4>
+<section id="id153">
+<h4>Example<a class="headerlink" href="#id153" title="Link to this 
heading">¶</a></h4>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select make_array(1, 2, 3, 4, 5);
 +----------------------------------------------------------+
 | make_array(Int64(1),Int64(2),Int64(3),Int64(4),Int64(5)) |
@@ -5619,8 +5685,8 @@ string operators.</p></li>
 </pre></div>
 </div>
 </section>
-<section id="id151">
-<h4>Aliases<a class="headerlink" href="#id151" title="Link to this 
heading">¶</a></h4>
+<section id="id154">
+<h4>Aliases<a class="headerlink" href="#id154" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p>make_list</p></li>
 </ul>
@@ -5636,16 +5702,16 @@ string operators.</p></li>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">starts_with</span><span 
class="p">(</span><span class="nb">str</span><span class="p">,</span> <span 
class="n">delimiter</span><span class="p">[,</span> <span 
class="n">null_str</span><span class="p">])</span>
 </pre></div>
 </div>
-<section id="id152">
-<h4>Arguments<a class="headerlink" href="#id152" title="Link to this 
heading">¶</a></h4>
+<section id="id155">
+<h4>Arguments<a class="headerlink" href="#id155" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>str</strong>: String expression to split.</p></li>
 <li><p><strong>delimiter</strong>: Delimiter string to split on.</p></li>
 <li><p><strong>null_str</strong>: Substring values to be replaced with <code 
class="docutils literal notranslate"><span 
class="pre">NULL</span></code></p></li>
 </ul>
 </section>
-<section id="id153">
-<h4>Aliases<a class="headerlink" href="#id153" title="Link to this 
heading">¶</a></h4>
+<section id="id156">
+<h4>Aliases<a class="headerlink" href="#id156" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p>string_to_list</p></li>
 </ul>
@@ -5662,8 +5728,8 @@ string operators.</p></li>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">trim_array</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">n</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id154">
-<h4>Arguments<a class="headerlink" href="#id154" title="Link to this 
heading">¶</a></h4>
+<section id="id157">
+<h4>Arguments<a class="headerlink" href="#id157" title="Link to this 
heading">¶</a></h4>
 <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>
@@ -5676,8 +5742,8 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <p>Returns an Arrow array between start and stop with step. <code 
class="docutils literal notranslate"><span class="pre">SELECT</span> <span 
class="pre">range(2,</span> <span class="pre">10,</span> <span 
class="pre">3)</span> <span class="pre">-&gt;</span> <span 
class="pre">[2,</span> <span class="pre">5,</span> <span 
class="pre">8]</span></code></p>
 <p>The range start..end contains all values with start &lt;= x &lt; end. It is 
empty if start &gt;= end.</p>
 <p>Step can not be 0 (then the range will be nonsense.).</p>
-<section id="id155">
-<h4>Arguments<a class="headerlink" href="#id155" title="Link to this 
heading">¶</a></h4>
+<section id="id158">
+<h4>Arguments<a class="headerlink" href="#id158" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>start</strong>: start of the range</p></li>
 <li><p><strong>end</strong>: end of the range (not included)</p></li>
@@ -5718,8 +5784,8 @@ a struct type of fields <code class="docutils literal 
notranslate"><span class="
 <span class="o">+</span><span class="c1">-----------------+</span>
 </pre></div>
 </div>
-<section id="id156">
-<h4>Arguments<a class="headerlink" href="#id156" title="Link to this 
heading">¶</a></h4>
+<section id="id159">
+<h4>Arguments<a class="headerlink" href="#id159" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression_n</strong>: Expression to include in the output 
struct.
 Can be a constant, column, or function, and any combination of arithmetic or
@@ -5744,8 +5810,8 @@ string operators.</p></li>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">digest</span><span 
class="p">(</span><span class="n">expression</span><span class="p">,</span> 
<span class="n">algorithm</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id157">
-<h4>Arguments<a class="headerlink" href="#id157" title="Link to this 
heading">¶</a></h4>
+<section id="id160">
+<h4>Arguments<a class="headerlink" href="#id160" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: String expression to operate on.
 Can be a constant, column, or function, and any combination of string 
operators.</p></li>
@@ -5771,8 +5837,8 @@ Must be one of:</p>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">md5</span><span 
class="p">(</span><span class="n">expression</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id158">
-<h4>Arguments<a class="headerlink" href="#id158" title="Link to this 
heading">¶</a></h4>
+<section id="id161">
+<h4>Arguments<a class="headerlink" href="#id161" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: String expression to operate on.
 Can be a constant, column, or function, and any combination of string 
operators.</p></li>
@@ -5785,8 +5851,8 @@ Can be a constant, column, or function, and any 
combination of string operators.
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">sha224</span><span 
class="p">(</span><span class="n">expression</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id159">
-<h4>Arguments<a class="headerlink" href="#id159" title="Link to this 
heading">¶</a></h4>
+<section id="id162">
+<h4>Arguments<a class="headerlink" href="#id162" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: String expression to operate on.
 Can be a constant, column, or function, and any combination of string 
operators.</p></li>
@@ -5799,8 +5865,8 @@ Can be a constant, column, or function, and any 
combination of string operators.
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">sha256</span><span 
class="p">(</span><span class="n">expression</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id160">
-<h4>Arguments<a class="headerlink" href="#id160" title="Link to this 
heading">¶</a></h4>
+<section id="id163">
+<h4>Arguments<a class="headerlink" href="#id163" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: String expression to operate on.
 Can be a constant, column, or function, and any combination of string 
operators.</p></li>
@@ -5813,8 +5879,8 @@ Can be a constant, column, or function, and any 
combination of string operators.
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">sha384</span><span 
class="p">(</span><span class="n">expression</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id161">
-<h4>Arguments<a class="headerlink" href="#id161" title="Link to this 
heading">¶</a></h4>
+<section id="id164">
+<h4>Arguments<a class="headerlink" href="#id164" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: String expression to operate on.
 Can be a constant, column, or function, and any combination of string 
operators.</p></li>
@@ -5827,8 +5893,8 @@ Can be a constant, column, or function, and any 
combination of string operators.
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">sha512</span><span 
class="p">(</span><span class="n">expression</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id162">
-<h4>Arguments<a class="headerlink" href="#id162" title="Link to this 
heading">¶</a></h4>
+<section id="id165">
+<h4>Arguments<a class="headerlink" href="#id165" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: String expression to operate on.
 Can be a constant, column, or function, and any combination of string 
operators.</p></li>
@@ -5848,8 +5914,8 @@ Can be a constant, column, or function, and any 
combination of string operators.
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">arrow_cast</span><span 
class="p">(</span><span class="n">expression</span><span class="p">,</span> 
<span class="n">datatype</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id163">
-<h4>Arguments<a class="headerlink" href="#id163" title="Link to this 
heading">¶</a></h4>
+<section id="id166">
+<h4>Arguments<a class="headerlink" href="#id166" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: Expression to cast.
 Can be a constant, column, or function, and any combination of arithmetic or
@@ -5858,8 +5924,8 @@ string operators.</p></li>
 to cast to, as a string. The format is the same as that returned by [<code 
class="docutils literal notranslate"><span 
class="pre">arrow_typeof</span></code>]</p></li>
 </ul>
 </section>
-<section id="id164">
-<h4>Example<a class="headerlink" href="#id164" title="Link to this 
heading">¶</a></h4>
+<section id="id167">
+<h4>Example<a class="headerlink" href="#id167" title="Link to this 
heading">¶</a></h4>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select arrow_cast(-5, &#39;Int8&#39;) as 
a,
   arrow_cast(&#39;foo&#39;, &#39;Dictionary(Int32, Utf8)&#39;) as b,
   arrow_cast(&#39;bar&#39;, &#39;LargeUtf8&#39;) as c,
@@ -5881,16 +5947,16 @@ to cast to, as a string. The format is the same as that 
returned by [<code class
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">arrow_typeof</span><span 
class="p">(</span><span class="n">expression</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id165">
-<h4>Arguments<a class="headerlink" href="#id165" title="Link to this 
heading">¶</a></h4>
+<section id="id168">
+<h4>Arguments<a class="headerlink" href="#id168" title="Link to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p><strong>expression</strong>: Expression to evaluate.
 Can be a constant, column, or function, and any combination of arithmetic or
 string operators.</p></li>
 </ul>
 </section>
-<section id="id166">
-<h4>Example<a class="headerlink" href="#id166" title="Link to this 
heading">¶</a></h4>
+<section id="id169">
+<h4>Example<a class="headerlink" href="#id169" title="Link to this 
heading">¶</a></h4>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select arrow_typeof(&#39;foo&#39;), 
arrow_typeof(1);
 +---------------------------+------------------------+
 | arrow_typeof(Utf8(&quot;foo&quot;)) | arrow_typeof(Int64(1)) |

Reply via email to