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 0b995c073b Publish built docs triggered by 
bd1d82fe24566ad98715a26c777eb225b187cefd
0b995c073b is described below

commit 0b995c073b35287803f7fac941477e4466eeff36
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jul 27 13:08:24 2023 +0000

    Publish built docs triggered by bd1d82fe24566ad98715a26c777eb225b187cefd
---
 _sources/user-guide/expressions.md.txt          |  44 +--
 _sources/user-guide/sql/scalar_functions.md.txt | 164 ++++++++-
 searchindex.js                                  |   2 +-
 user-guide/expressions.html                     |  16 +-
 user-guide/sql/scalar_functions.html            | 430 ++++++++++++++++++++----
 5 files changed, 572 insertions(+), 84 deletions(-)

diff --git a/_sources/user-guide/expressions.md.txt 
b/_sources/user-guide/expressions.md.txt
index 14cf8dc2ac..139e968ecc 100644
--- a/_sources/user-guide/expressions.md.txt
+++ b/_sources/user-guide/expressions.md.txt
@@ -179,26 +179,30 @@ Unlike to some databases the math functions in Datafusion 
works the same way as
 
 ## Array Expressions
 
-| Function                             | Notes                                 
                                                                         |
-| ------------------------------------ | 
--------------------------------------------------------------------------------------------------------------
 |
-| array_append(array, element)         | Appends an element to the end of an 
array. `array_append([1, 2, 3], 4) -> [1, 2, 3, 4]`                        |
-| array_concat(array[, ..., array_n])  | Concatenates arrays. 
`array_concat([1, 2, 3], [4, 5, 6]) -> [1, 2, 3, 4, 5, 6]`                      
          |
-| array_has(array, element)            | Returns true if the array contains 
the element `array_has([1,2,3], 1) -> true`                                 |
-| array_has_all(array, sub-array)      | Returns true if all elements of 
sub-array exist in array `array_has_all([1,2,3], [1,3]) -> true`               |
-| array_has_any(array, sub-array)      | Returns true if any elements exist in 
both arrays `array_has_any([1,2,3], [1,4]) -> true`                      |
-| array_dims(array)                    | Returns an array of the array's 
dimensions. `array_dims([[1, 2, 3], [4, 5, 6]]) -> [2, 3]`                     |
-| array_fill(element, array)           | Returns an array filled with copies 
of the given value.                                                        |
-| array_length(array, dimension)       | Returns the length of the array 
dimension. `array_length([1, 2, 3, 4, 5]) -> 5`                                |
-| array_ndims(array)                   | Returns the number of dimensions of 
the array. `array_ndims([[1, 2, 3], [4, 5, 6]]) -> 2`                      |
-| array_position(array, element)       | Searches for an element in the array, 
returns first occurrence. `array_position([1, 2, 2, 3, 4], 2) -> 2`      |
-| array_positions(array, element)      | Searches for an element in the array, 
returns all occurrences. `array_positions([1, 2, 2, 3, 4], 2) -> [2, 3]` |
-| array_prepend(array, element)        | Prepends an element to the beginning 
of an array. `array_prepend(1, [2, 3, 4]) -> [1, 2, 3, 4]`                |
-| array_remove(array, element)         | Removes all elements equal to the 
given value from the array.                                                  |
-| array_replace(array, from, to)       | Replaces a specified element with 
another specified element.                                                   |
-| array_to_string(array, delimeter)    | 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)                 | Removes the last n elements from the 
array.                                                                    |
+| Function                              | Notes                                
                                                                                
                                                    |
+| ------------------------------------- | 
------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 |
+| array_append(array, element)          | Appends an element to the end of an 
array. `array_append([1, 2, 3], 4) -> [1, 2, 3, 4]`                             
                                                     |
+| array_concat(array[, ..., array_n])   | Concatenates arrays. 
`array_concat([1, 2, 3], [4, 5, 6]) -> [1, 2, 3, 4, 5, 6]`                      
                                                                    |
+| array_has(array, element)             | Returns true if the array contains 
the element `array_has([1,2,3], 1) -> true`                                     
                                                      |
+| array_has_all(array, sub-array)       | Returns true if all elements of 
sub-array exist in array `array_has_all([1,2,3], [1,3]) -> true`                
                                                         |
+| array_has_any(array, sub-array)       | Returns true if any elements exist 
in both arrays `array_has_any([1,2,3], [1,4]) -> true`                          
                                                      |
+| array_dims(array)                     | Returns an array of the array's 
dimensions. `array_dims([[1, 2, 3], [4, 5, 6]]) -> [2, 3]`                      
                                                         |
+| array_fill(element, array)            | Returns an array filled with copies 
of the given value.                                                             
                                                     |
+| array_length(array, dimension)        | Returns the length of the array 
dimension. `array_length([1, 2, 3, 4, 5]) -> 5`                                 
                                                         |
+| array_ndims(array)                    | Returns the number of dimensions of 
the array. `array_ndims([[1, 2, 3], [4, 5, 6]]) -> 2`                           
                                                     |
+| array_position(array, element)        | Searches for an element in the 
array, returns first occurrence. `array_position([1, 2, 2, 3, 4], 2) -> 2`      
                                                          |
+| array_positions(array, element)       | Searches for an element in the 
array, returns all occurrences. `array_positions([1, 2, 2, 3, 4], 2) -> [2, 3]` 
                                                          |
+| array_prepend(array, element)         | Prepends an element to the beginning 
of an array. `array_prepend(1, [2, 3, 4]) -> [1, 2, 3, 4]`                      
                                                    |
+| array_remove(array, element)          | Removes the first element from the 
array equal to the given value. `array_remove([1, 2, 2, 3, 2, 1, 4], 2) -> [1, 
2, 3, 2, 1, 4]`                                        |
+| array_remove_n(array, element, max)   | Removes the first `max` elements 
from the array equal to the given value. `array_remove_n([1, 2, 2, 3, 2, 1, 4], 
2, 2) -> [1, 3, 2, 1, 4]`                               |
+| array_remove_all(array, element)      | Removes all elements from the array 
equal to the given value. `array_remove_all([1, 2, 2, 3, 2, 1, 4], 2) -> [1, 3, 
1, 4]`                                               |
+| array_replace(array, from, to)        | Replaces the first occurrence of the 
specified element with another specified element. `array_replace([1, 2, 2, 3, 
2, 1, 4], 2, 5) -> [1, 5, 2, 3, 2, 1, 4]`             |
+| 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_to_string(array, delimeter)     | 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)                  | Removes the last n elements from the 
array.                                                                          
                                                    |
 
 ## Regular Expressions
 
diff --git a/_sources/user-guide/sql/scalar_functions.md.txt 
b/_sources/user-guide/sql/scalar_functions.md.txt
index 301f57d031..1e90edc112 100644
--- a/_sources/user-guide/sql/scalar_functions.md.txt
+++ b/_sources/user-guide/sql/scalar_functions.md.txt
@@ -1441,7 +1441,11 @@ from_unixtime(expression)
 - [array_push_back](#array_push_back)
 - [array_push_front](#array_push_front)
 - [array_remove](#array_remove)
+- [array_remove_n](#array_remove_n)
+- [array_remove_all](#array_remove_all)
 - [array_replace](#array_replace)
+- [array_replace_n](#array_replace_n)
+- [array_replace_all](#array_replace_all)
 - [array_to_string](#array_to_string)
 - [cardinality](#cardinality)
 - [list_append](#list_append)
@@ -1457,6 +1461,12 @@ from_unixtime(expression)
 - [list_positions](#list_positions)
 - [list_push_back](#list_push_back)
 - [list_push_front](#list_push_front)
+- [list_remove](#list_remove)
+- [list_remove_n](#list_remove_n)
+- [list_remove_all](#list_remove_all)
+- [list_replace](#list_replace)
+- [list_replace_n](#list_replace_n)
+- [list_replace_all](#list_replace_all)
 - [list_to_string](#list_to_string)
 - [make_array](#make_array)
 - [make_list](#make_list)
@@ -1783,7 +1793,7 @@ _Alias of [array_prepend](#array_prepend)._
 
 ### `array_remove`
 
-Removes all elements equal to the given value from the array.
+Removes the first element from the array equal to the given value.
 
 ```
 array_remove(array, element)
@@ -1795,9 +1805,71 @@ array_remove(array, element)
   Can be a constant, column, or function, and any combination of array 
operators.
 - **element**: Element to be removed from the array.
 
+#### Example
+
+```
+❯ select array_remove([1, 2, 2, 3, 2, 1, 4], 2);
++----------------------------------------------+
+| array_remove(List([1,2,2,3,2,1,4]),Int64(2)) |
++----------------------------------------------+
+| [1, 2, 3, 2, 1, 4]                           |
++----------------------------------------------+
+```
+
+### `array_remove_n`
+
+Removes the first `max` elements from the array equal to the given value.
+
+```
+array_remove_n(array, element, max)
+```
+
+#### Arguments
+
+- **array**: Array expression.
+  Can be a constant, column, or function, and any combination of array 
operators.
+- **element**: Element to be removed from the array.
+- **max**: Number of first occurrences to remove.
+
+#### Example
+
+```
+❯ select array_remove_n([1, 2, 2, 3, 2, 1, 4], 2, 2);
++---------------------------------------------------------+
+| array_remove_n(List([1,2,2,3,2,1,4]),Int64(2),Int64(2)) |
++---------------------------------------------------------+
+| [1, 3, 2, 1, 4]                                         |
++---------------------------------------------------------+
+```
+
+### `array_remove_all`
+
+Removes all elements from the array equal to the given value.
+
+```
+array_remove_all(array, element)
+```
+
+#### Arguments
+
+- **array**: Array expression.
+  Can be a constant, column, or function, and any combination of array 
operators.
+- **element**: Element to be removed from the array.
+
+#### Example
+
+```
+❯ select array_remove_all([1, 2, 2, 3, 2, 1, 4], 2);
++--------------------------------------------------+
+| array_remove_all(List([1,2,2,3,2,1,4]),Int64(2)) |
++--------------------------------------------------+
+| [1, 3, 1, 4]                                     |
++--------------------------------------------------+
+```
+
 ### `array_replace`
 
-Replaces a specified element with another specified element.
+Replaces the first occurrence of the specified element with another specified 
element.
 
 ```
 array_replace(array, from, to)
@@ -1810,6 +1882,70 @@ array_replace(array, from, to)
 - **from**: Initial element.
 - **to**: Final element.
 
+#### Example
+
+```
+❯ select array_replace([1, 2, 2, 3, 2, 1, 4], 2, 5);
++--------------------------------------------------------+
+| array_replace(List([1,2,2,3,2,1,4]),Int64(2),Int64(5)) |
++--------------------------------------------------------+
+| [1, 5, 2, 3, 2, 1, 4]                                  |
++--------------------------------------------------------+
+```
+
+### `array_replace_n`
+
+Replaces the first `max` occurrences of the specified element with another 
specified element.
+
+```
+array_replace_n(array, from, to, max)
+```
+
+#### Arguments
+
+- **array**: Array expression.
+  Can be a constant, column, or function, and any combination of array 
operators.
+- **from**: Initial element.
+- **to**: Final element.
+- **max**: Number of first occurrences to replace.
+
+#### Example
+
+```
+❯ select array_replace_n([1, 2, 2, 3, 2, 1, 4], 2, 5, 2);
++-------------------------------------------------------------------+
+| array_replace_n(List([1,2,2,3,2,1,4]),Int64(2),Int64(5),Int64(2)) |
++-------------------------------------------------------------------+
+| [1, 5, 5, 3, 2, 1, 4]                                             |
++-------------------------------------------------------------------+
+```
+
+### `array_replace_all`
+
+Replaces all occurrences of the specified element with another specified 
element.
+
+```
+array_replace_all(array, from, to)
+```
+
+#### Arguments
+
+- **array**: Array expression.
+  Can be a constant, column, or function, and any combination of array 
operators.
+- **from**: Initial element.
+- **to**: Final element.
+
+#### Example
+
+```
+❯ select array_replace_all([1, 2, 2, 3, 2, 1, 4], 2, 5);
++------------------------------------------------------------+
+| array_replace_all(List([1,2,2,3,2,1,4]),Int64(2),Int64(5)) |
++------------------------------------------------------------+
+| [1, 5, 5, 3, 5, 1, 4]                                      |
++------------------------------------------------------------+
+```
+
 ### `array_to_string`
 
 Converts each element to its text representation.
@@ -1917,6 +2053,30 @@ _Alias of [array_append](#array_append)._
 
 _Alias of [array_prepend](#array_prepend)._
 
+### `list_remove`
+
+_Alias of [array_remove](#array_remove)._
+
+### `list_remove_n`
+
+_Alias of [array_remove_n](#array_remove_n)._
+
+### `list_remove_all`
+
+_Alias of [array_remove_all](#array_remove_all)._
+
+### `list_replace`
+
+_Alias of [array_replace](#array_replace)._
+
+### `list_replace_n`
+
+_Alias of [array_replace_n](#array_replace_n)._
+
+### `list_replace_all`
+
+_Alias of [array_replace_all](#array_replace_all)._
+
 ### `list_to_string`
 
 _Alias of [list_to_string](#list_to_string)._
diff --git a/searchindex.js b/searchindex.js
index b51a516e3b..f16ae37223 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", 
"user-guide/cli", "user-guide/configs", "user-guide/dataframe", 
"user-guide/example-usage", "user-guide/expressions", "user-guide/faq", "use 
[...]
\ 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", 
"user-guide/cli", "user-guide/configs", "user-guide/dataframe", 
"user-guide/example-usage", "user-guide/expressions", "user-guide/faq", "use 
[...]
\ No newline at end of file
diff --git a/user-guide/expressions.html b/user-guide/expressions.html
index f93533e15b..86b6a33a0d 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -849,10 +849,22 @@ expressions such as <code class="docutils literal 
notranslate"><span class="pre"
 <td><p>Prepends an element to the beginning of an array. <code class="docutils 
literal notranslate"><span class="pre">array_prepend(1,</span> <span 
class="pre">[2,</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> <span 
class="pre">4]</span></code></p></td>
 </tr>
 <tr class="row-even"><td><p>array_remove(array, element)</p></td>
-<td><p>Removes all elements equal to the given value from the array.</p></td>
+<td><p>Removes the first element from the array equal to the given value. 
<code class="docutils literal notranslate"><span 
class="pre">array_remove([1,</span> <span class="pre">2,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">2,</span> 
<span class="pre">1,</span> <span class="pre">4],</span> <span 
class="pre">2)</span> <span class="pre">-&gt;</span> <span 
class="pre">[1,</span> <span class="pre">2,</span> <span class="pre">3,</span> 
<span class="pre">2, [...]
+</tr>
+<tr class="row-odd"><td><p>array_remove_n(array, element, max)</p></td>
+<td><p>Removes the first <code class="docutils literal notranslate"><span 
class="pre">max</span></code> elements from the array equal to the given value. 
<code class="docutils literal notranslate"><span 
class="pre">array_remove_n([1,</span> <span class="pre">2,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">2,</span> 
<span class="pre">1,</span> <span class="pre">4],</span> <span 
class="pre">2,</span> <span class="pre">2)</span> <span class="pre">-&gt;</s 
[...]
+</tr>
+<tr class="row-even"><td><p>array_remove_all(array, element)</p></td>
+<td><p>Removes all elements from the array equal to the given value. <code 
class="docutils literal notranslate"><span 
class="pre">array_remove_all([1,</span> <span class="pre">2,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">2,</span> 
<span class="pre">1,</span> <span class="pre">4],</span> <span 
class="pre">2)</span> <span class="pre">-&gt;</span> <span 
class="pre">[1,</span> <span class="pre">3,</span> <span class="pre">1,</span> 
<span class="pre">4]< [...]
 </tr>
 <tr class="row-odd"><td><p>array_replace(array, from, to)</p></td>
-<td><p>Replaces a specified element with another specified element.</p></td>
+<td><p>Replaces the first occurrence of the specified element with another 
specified element. <code class="docutils literal notranslate"><span 
class="pre">array_replace([1,</span> <span class="pre">2,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">2,</span> 
<span class="pre">1,</span> <span class="pre">4],</span> <span 
class="pre">2,</span> <span class="pre">5)</span> <span 
class="pre">-&gt;</span> <span class="pre">[1,</span> <span 
class="pre">5,</span> [...]
+</tr>
+<tr class="row-even"><td><p>array_replace_n(array, from, to, max)</p></td>
+<td><p>Replaces the first <code class="docutils literal notranslate"><span 
class="pre">max</span></code> occurrences of the specified element with another 
specified element. <code class="docutils literal notranslate"><span 
class="pre">array_replace_n([1,</span> <span class="pre">2,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">2,</span> 
<span class="pre">1,</span> <span class="pre">4],</span> <span 
class="pre">2,</span> <span class="pre">5,</span> <span [...]
+</tr>
+<tr class="row-odd"><td><p>array_replace_all(array, from, to)</p></td>
+<td><p>Replaces all occurrences of the specified element with another 
specified element. <code class="docutils literal notranslate"><span 
class="pre">array_replace_all([1,</span> <span class="pre">2,</span> <span 
class="pre">2,</span> <span class="pre">3,</span> <span class="pre">2,</span> 
<span class="pre">1,</span> <span class="pre">4],</span> <span 
class="pre">2,</span> <span class="pre">5)</span> <span 
class="pre">-&gt;</span> <span class="pre">[1,</span> <span 
class="pre">5,</span>  [...]
 </tr>
 <tr class="row-even"><td><p>array_to_string(array, delimeter)</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>
diff --git a/user-guide/sql/scalar_functions.html 
b/user-guide/sql/scalar_functions.html
index e1cf692eec..4e1e4a69cd 100644
--- a/user-guide/sql/scalar_functions.html
+++ b/user-guide/sql/scalar_functions.html
@@ -1955,6 +1955,53 @@
        Arguments
       </a>
      </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id105">
+       Example
+      </a>
+     </li>
+    </ul>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#array-remove-n">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       array_remove_n
+      </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="#id106">
+       Arguments
+      </a>
+     </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id107">
+       Example
+      </a>
+     </li>
+    </ul>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#array-remove-all">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       array_remove_all
+      </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="#id108">
+       Arguments
+      </a>
+     </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id109">
+       Example
+      </a>
+     </li>
     </ul>
    </li>
    <li class="toc-h3 nav-item toc-entry">
@@ -1967,10 +2014,57 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id105">
+      <a class="reference internal nav-link" href="#id110">
+       Arguments
+      </a>
+     </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id111">
+       Example
+      </a>
+     </li>
+    </ul>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#array-replace-n">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       array_replace_n
+      </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="#id112">
+       Arguments
+      </a>
+     </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id113">
+       Example
+      </a>
+     </li>
+    </ul>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#array-replace-all">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       array_replace_all
+      </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="#id114">
        Arguments
       </a>
      </li>
+     <li class="toc-h4 nav-item toc-entry">
+      <a class="reference internal nav-link" href="#id115">
+       Example
+      </a>
+     </li>
     </ul>
    </li>
    <li class="toc-h3 nav-item toc-entry">
@@ -1983,17 +2077,17 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id106">
+      <a class="reference internal nav-link" href="#id116">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id107">
+      <a class="reference internal nav-link" href="#id117">
        Example
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id108">
+      <a class="reference internal nav-link" href="#id118">
        Aliases
       </a>
      </li>
@@ -2009,12 +2103,12 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id109">
+      <a class="reference internal nav-link" href="#id119">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id110">
+      <a class="reference internal nav-link" href="#id120">
        Example
       </a>
      </li>
@@ -2137,6 +2231,60 @@
      </code>
     </a>
    </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#list-remove">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       list_remove
+      </span>
+     </code>
+    </a>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#list-remove-n">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       list_remove_n
+      </span>
+     </code>
+    </a>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#list-remove-all">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       list_remove_all
+      </span>
+     </code>
+    </a>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#list-replace">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       list_replace
+      </span>
+     </code>
+    </a>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#list-replace-n">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       list_replace_n
+      </span>
+     </code>
+    </a>
+   </li>
+   <li class="toc-h3 nav-item toc-entry">
+    <a class="reference internal nav-link" href="#list-replace-all">
+     <code class="docutils literal notranslate">
+      <span class="pre">
+       list_replace_all
+      </span>
+     </code>
+    </a>
+   </li>
    <li class="toc-h3 nav-item toc-entry">
     <a class="reference internal nav-link" href="#list-to-string">
      <code class="docutils literal notranslate">
@@ -2156,17 +2304,17 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id111">
+      <a class="reference internal nav-link" href="#id121">
        Arguments
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id112">
+      <a class="reference internal nav-link" href="#id122">
        Example
       </a>
      </li>
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id113">
+      <a class="reference internal nav-link" href="#id123">
        Aliases
       </a>
      </li>
@@ -2191,7 +2339,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id114">
+      <a class="reference internal nav-link" href="#id124">
        Arguments
       </a>
      </li>
@@ -2214,7 +2362,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id115">
+      <a class="reference internal nav-link" href="#id125">
        Arguments
       </a>
      </li>
@@ -2237,7 +2385,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id116">
+      <a class="reference internal nav-link" href="#id126">
        Arguments
       </a>
      </li>
@@ -2253,7 +2401,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id117">
+      <a class="reference internal nav-link" href="#id127">
        Arguments
       </a>
      </li>
@@ -2269,7 +2417,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id118">
+      <a class="reference internal nav-link" href="#id128">
        Arguments
       </a>
      </li>
@@ -2285,7 +2433,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id119">
+      <a class="reference internal nav-link" href="#id129">
        Arguments
       </a>
      </li>
@@ -2301,7 +2449,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id120">
+      <a class="reference internal nav-link" href="#id130">
        Arguments
       </a>
      </li>
@@ -2317,7 +2465,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id121">
+      <a class="reference internal nav-link" href="#id131">
        Arguments
       </a>
      </li>
@@ -2340,7 +2488,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id122">
+      <a class="reference internal nav-link" href="#id132">
        Arguments
       </a>
      </li>
@@ -2356,7 +2504,7 @@
     </a>
     <ul class="nav section-nav flex-column">
      <li class="toc-h4 nav-item toc-entry">
-      <a class="reference internal nav-link" href="#id123">
+      <a class="reference internal nav-link" href="#id133">
        Arguments
       </a>
      </li>
@@ -3902,7 +4050,11 @@ Can be a constant, column, or function, and any 
combination of arithmetic operat
 <li><p><a class="reference internal" 
href="#array-push-back">array_push_back</a></p></li>
 <li><p><a class="reference internal" 
href="#array-push-front">array_push_front</a></p></li>
 <li><p><a class="reference internal" 
href="#array-remove">array_remove</a></p></li>
+<li><p><a class="reference internal" 
href="#array-remove-n">array_remove_n</a></p></li>
+<li><p><a class="reference internal" 
href="#array-remove-all">array_remove_all</a></p></li>
 <li><p><a class="reference internal" 
href="#array-replace">array_replace</a></p></li>
+<li><p><a class="reference internal" 
href="#array-replace-n">array_replace_n</a></p></li>
+<li><p><a class="reference internal" 
href="#array-replace-all">array_replace_all</a></p></li>
 <li><p><a class="reference internal" 
href="#array-to-string">array_to_string</a></p></li>
 <li><p><a class="reference internal" 
href="#cardinality">cardinality</a></p></li>
 <li><p><a class="reference internal" 
href="#list-append">list_append</a></p></li>
@@ -3918,6 +4070,12 @@ Can be a constant, column, or function, and any 
combination of arithmetic operat
 <li><p><a class="reference internal" 
href="#list-positions">list_positions</a></p></li>
 <li><p><a class="reference internal" 
href="#list-push-back">list_push_back</a></p></li>
 <li><p><a class="reference internal" 
href="#list-push-front">list_push_front</a></p></li>
+<li><p><a class="reference internal" 
href="#list-remove">list_remove</a></p></li>
+<li><p><a class="reference internal" 
href="#list-remove-n">list_remove_n</a></p></li>
+<li><p><a class="reference internal" 
href="#list-remove-all">list_remove_all</a></p></li>
+<li><p><a class="reference internal" 
href="#list-replace">list_replace</a></p></li>
+<li><p><a class="reference internal" 
href="#list-replace-n">list_replace_n</a></p></li>
+<li><p><a class="reference internal" 
href="#list-replace-all">list_replace_all</a></p></li>
 <li><p><a class="reference internal" 
href="#list-to-string">list_to_string</a></p></li>
 <li><p><a class="reference internal" href="#make-array">make_array</a></p></li>
 <li><p><a class="reference internal" href="#make-list">make_list</a></p></li>
@@ -4272,7 +4430,7 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 </section>
 <section id="array-remove">
 <h3><code class="docutils literal notranslate"><span 
class="pre">array_remove</span></code><a class="headerlink" 
href="#array-remove" title="Permalink to this heading">¶</a></h3>
-<p>Removes all elements equal to the given value from the array.</p>
+<p>Removes the first element from the array equal to the given value.</p>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_remove</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">element</span><span class="p">)</span>
 </pre></div>
 </div>
@@ -4284,15 +4442,79 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <li><p><strong>element</strong>: Element to be removed from the array.</p></li>
 </ul>
 </section>
+<section id="id105">
+<h4>Example<a class="headerlink" href="#id105" title="Permalink to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_remove([1, 2, 2, 3, 2, 1, 
4], 2);
++----------------------------------------------+
+| array_remove(List([1,2,2,3,2,1,4]),Int64(2)) |
++----------------------------------------------+
+| [1, 2, 3, 2, 1, 4]                           |
++----------------------------------------------+
+</pre></div>
+</div>
+</section>
+</section>
+<section id="array-remove-n">
+<h3><code class="docutils literal notranslate"><span 
class="pre">array_remove_n</span></code><a class="headerlink" 
href="#array-remove-n" title="Permalink to this heading">¶</a></h3>
+<p>Removes the first <code class="docutils literal notranslate"><span 
class="pre">max</span></code> elements from the array equal to the given 
value.</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_remove_n</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">element</span><span class="p">,</span> <span 
class="nb">max</span><span class="p">)</span>
+</pre></div>
+</div>
+<section id="id106">
+<h4>Arguments<a class="headerlink" href="#id106" title="Permalink 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>
+<li><p><strong>element</strong>: Element to be removed from the array.</p></li>
+<li><p><strong>max</strong>: Number of first occurrences to remove.</p></li>
+</ul>
+</section>
+<section id="id107">
+<h4>Example<a class="headerlink" href="#id107" title="Permalink to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_remove_n([1, 2, 2, 3, 2, 1, 
4], 2, 2);
++---------------------------------------------------------+
+| array_remove_n(List([1,2,2,3,2,1,4]),Int64(2),Int64(2)) |
++---------------------------------------------------------+
+| [1, 3, 2, 1, 4]                                         |
++---------------------------------------------------------+
+</pre></div>
+</div>
+</section>
+</section>
+<section id="array-remove-all">
+<h3><code class="docutils literal notranslate"><span 
class="pre">array_remove_all</span></code><a class="headerlink" 
href="#array-remove-all" title="Permalink to this heading">¶</a></h3>
+<p>Removes all elements from the array equal to the given value.</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span 
class="n">array_remove_all</span><span class="p">(</span><span 
class="n">array</span><span class="p">,</span> <span 
class="n">element</span><span class="p">)</span>
+</pre></div>
+</div>
+<section id="id108">
+<h4>Arguments<a class="headerlink" href="#id108" title="Permalink 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>
+<li><p><strong>element</strong>: Element to be removed from the array.</p></li>
+</ul>
+</section>
+<section id="id109">
+<h4>Example<a class="headerlink" href="#id109" title="Permalink to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_remove_all([1, 2, 2, 3, 2, 
1, 4], 2);
++--------------------------------------------------+
+| array_remove_all(List([1,2,2,3,2,1,4]),Int64(2)) |
++--------------------------------------------------+
+| [1, 3, 1, 4]                                     |
++--------------------------------------------------+
+</pre></div>
+</div>
+</section>
 </section>
 <section id="array-replace">
 <h3><code class="docutils literal notranslate"><span 
class="pre">array_replace</span></code><a class="headerlink" 
href="#array-replace" title="Permalink to this heading">¶</a></h3>
-<p>Replaces a specified element with another specified element.</p>
+<p>Replaces the first occurrence of the specified element with another 
specified element.</p>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_replace</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">from</span><span class="p">,</span> <span class="n">to</span><span 
class="p">)</span>
 </pre></div>
 </div>
-<section id="id105">
-<h4>Arguments<a class="headerlink" href="#id105" title="Permalink to this 
heading">¶</a></h4>
+<section id="id110">
+<h4>Arguments<a class="headerlink" href="#id110" title="Permalink 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>
@@ -4300,6 +4522,72 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <li><p><strong>to</strong>: Final element.</p></li>
 </ul>
 </section>
+<section id="id111">
+<h4>Example<a class="headerlink" href="#id111" title="Permalink to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_replace([1, 2, 2, 3, 2, 1, 
4], 2, 5);
++--------------------------------------------------------+
+| array_replace(List([1,2,2,3,2,1,4]),Int64(2),Int64(5)) |
++--------------------------------------------------------+
+| [1, 5, 2, 3, 2, 1, 4]                                  |
++--------------------------------------------------------+
+</pre></div>
+</div>
+</section>
+</section>
+<section id="array-replace-n">
+<h3><code class="docutils literal notranslate"><span 
class="pre">array_replace_n</span></code><a class="headerlink" 
href="#array-replace-n" title="Permalink to this heading">¶</a></h3>
+<p>Replaces the first <code class="docutils literal notranslate"><span 
class="pre">max</span></code> occurrences of the specified element with another 
specified element.</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span class="n">array_replace_n</span><span 
class="p">(</span><span class="n">array</span><span class="p">,</span> <span 
class="n">from</span><span class="p">,</span> <span class="n">to</span><span 
class="p">,</span> <span class="nb">max</span><span class="p">)</span>
+</pre></div>
+</div>
+<section id="id112">
+<h4>Arguments<a class="headerlink" href="#id112" title="Permalink 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>
+<li><p><strong>from</strong>: Initial element.</p></li>
+<li><p><strong>to</strong>: Final element.</p></li>
+<li><p><strong>max</strong>: Number of first occurrences to replace.</p></li>
+</ul>
+</section>
+<section id="id113">
+<h4>Example<a class="headerlink" href="#id113" title="Permalink to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_replace_n([1, 2, 2, 3, 2, 1, 
4], 2, 5, 2);
++-------------------------------------------------------------------+
+| array_replace_n(List([1,2,2,3,2,1,4]),Int64(2),Int64(5),Int64(2)) |
++-------------------------------------------------------------------+
+| [1, 5, 5, 3, 2, 1, 4]                                             |
++-------------------------------------------------------------------+
+</pre></div>
+</div>
+</section>
+</section>
+<section id="array-replace-all">
+<h3><code class="docutils literal notranslate"><span 
class="pre">array_replace_all</span></code><a class="headerlink" 
href="#array-replace-all" title="Permalink to this heading">¶</a></h3>
+<p>Replaces all occurrences of the specified element with another specified 
element.</p>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span><span 
class="n">array_replace_all</span><span class="p">(</span><span 
class="n">array</span><span class="p">,</span> <span class="n">from</span><span 
class="p">,</span> <span class="n">to</span><span class="p">)</span>
+</pre></div>
+</div>
+<section id="id114">
+<h4>Arguments<a class="headerlink" href="#id114" title="Permalink 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>
+<li><p><strong>from</strong>: Initial element.</p></li>
+<li><p><strong>to</strong>: Final element.</p></li>
+</ul>
+</section>
+<section id="id115">
+<h4>Example<a class="headerlink" href="#id115" title="Permalink to this 
heading">¶</a></h4>
+<div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_replace_all([1, 2, 2, 3, 2, 
1, 4], 2, 5);
++------------------------------------------------------------+
+| array_replace_all(List([1,2,2,3,2,1,4]),Int64(2),Int64(5)) |
++------------------------------------------------------------+
+| [1, 5, 5, 3, 5, 1, 4]                                      |
++------------------------------------------------------------+
+</pre></div>
+</div>
+</section>
 </section>
 <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="Permalink to this heading">¶</a></h3>
@@ -4307,16 +4595,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">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>
 </pre></div>
 </div>
-<section id="id106">
-<h4>Arguments<a class="headerlink" href="#id106" title="Permalink to this 
heading">¶</a></h4>
+<section id="id116">
+<h4>Arguments<a class="headerlink" href="#id116" title="Permalink 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>
 <li><p><strong>delimeter</strong>: Array element separator.</p></li>
 </ul>
 </section>
-<section id="id107">
-<h4>Example<a class="headerlink" href="#id107" title="Permalink to this 
heading">¶</a></h4>
+<section id="id117">
+<h4>Example<a class="headerlink" href="#id117" title="Permalink to this 
heading">¶</a></h4>
 <div class="highlight-default notranslate"><div 
class="highlight"><pre><span></span>❯ select array_to_string([[1, 2, 3, 4], [5, 
6, 7, 8]], &#39;,&#39;);
 +----------------------------------------------------+
 | array_to_string(List([1,2,3,4,5,6,7,8]),Utf8(&quot;,&quot;)) |
@@ -4326,8 +4614,8 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 </pre></div>
 </div>
 </section>
-<section id="id108">
-<h4>Aliases<a class="headerlink" href="#id108" title="Permalink to this 
heading">¶</a></h4>
+<section id="id118">
+<h4>Aliases<a class="headerlink" href="#id118" title="Permalink to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p>array_join</p></li>
 <li><p>list_join</p></li>
@@ -4341,15 +4629,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">cardinality</span><span 
class="p">(</span><span class="n">array</span><span class="p">)</span>
 </pre></div>
 </div>
-<section id="id109">
-<h4>Arguments<a class="headerlink" href="#id109" title="Permalink to this 
heading">¶</a></h4>
+<section id="id119">
+<h4>Arguments<a class="headerlink" href="#id119" title="Permalink 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="id110">
-<h4>Example<a class="headerlink" href="#id110" title="Permalink to this 
heading">¶</a></h4>
+<section id="id120">
+<h4>Example<a class="headerlink" href="#id120" title="Permalink 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])) |
@@ -4412,6 +4700,30 @@ Can be a constant, column, or function, and any 
combination of array operators.<
 <h3><code class="docutils literal notranslate"><span 
class="pre">list_push_front</span></code><a class="headerlink" 
href="#list-push-front" title="Permalink to this heading">¶</a></h3>
 <p><em>Alias of <a class="reference internal" 
href="#array-prepend">array_prepend</a>.</em></p>
 </section>
+<section id="list-remove">
+<h3><code class="docutils literal notranslate"><span 
class="pre">list_remove</span></code><a class="headerlink" href="#list-remove" 
title="Permalink to this heading">¶</a></h3>
+<p><em>Alias of <a class="reference internal" 
href="#array-remove">array_remove</a>.</em></p>
+</section>
+<section id="list-remove-n">
+<h3><code class="docutils literal notranslate"><span 
class="pre">list_remove_n</span></code><a class="headerlink" 
href="#list-remove-n" title="Permalink to this heading">¶</a></h3>
+<p><em>Alias of <a class="reference internal" 
href="#array-remove-n">array_remove_n</a>.</em></p>
+</section>
+<section id="list-remove-all">
+<h3><code class="docutils literal notranslate"><span 
class="pre">list_remove_all</span></code><a class="headerlink" 
href="#list-remove-all" title="Permalink to this heading">¶</a></h3>
+<p><em>Alias of <a class="reference internal" 
href="#array-remove-all">array_remove_all</a>.</em></p>
+</section>
+<section id="list-replace">
+<h3><code class="docutils literal notranslate"><span 
class="pre">list_replace</span></code><a class="headerlink" 
href="#list-replace" title="Permalink to this heading">¶</a></h3>
+<p><em>Alias of <a class="reference internal" 
href="#array-replace">array_replace</a>.</em></p>
+</section>
+<section id="list-replace-n">
+<h3><code class="docutils literal notranslate"><span 
class="pre">list_replace_n</span></code><a class="headerlink" 
href="#list-replace-n" title="Permalink to this heading">¶</a></h3>
+<p><em>Alias of <a class="reference internal" 
href="#array-replace-n">array_replace_n</a>.</em></p>
+</section>
+<section id="list-replace-all">
+<h3><code class="docutils literal notranslate"><span 
class="pre">list_replace_all</span></code><a class="headerlink" 
href="#list-replace-all" title="Permalink to this heading">¶</a></h3>
+<p><em>Alias of <a class="reference internal" 
href="#array-replace-all">array_replace_all</a>.</em></p>
+</section>
 <section id="list-to-string">
 <h3><code class="docutils literal notranslate"><span 
class="pre">list_to_string</span></code><a class="headerlink" 
href="#list-to-string" title="Permalink to this heading">¶</a></h3>
 <p><em>Alias of <a class="reference internal" 
href="#list-to-string">list_to_string</a>.</em></p>
@@ -4422,16 +4734,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="id111">
-<h4>Arguments<a class="headerlink" href="#id111" title="Permalink to this 
heading">¶</a></h4>
+<section id="id121">
+<h4>Arguments<a class="headerlink" href="#id121" title="Permalink 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="id112">
-<h4>Example<a class="headerlink" href="#id112" title="Permalink to this 
heading">¶</a></h4>
+<section id="id122">
+<h4>Example<a class="headerlink" href="#id122" title="Permalink 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)) |
@@ -4441,8 +4753,8 @@ string operators.</p></li>
 </pre></div>
 </div>
 </section>
-<section id="id113">
-<h4>Aliases<a class="headerlink" href="#id113" title="Permalink to this 
heading">¶</a></h4>
+<section id="id123">
+<h4>Aliases<a class="headerlink" href="#id123" title="Permalink to this 
heading">¶</a></h4>
 <ul class="simple">
 <li><p>make_list</p></li>
 </ul>
@@ -4458,8 +4770,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="id114">
-<h4>Arguments<a class="headerlink" href="#id114" title="Permalink to this 
heading">¶</a></h4>
+<section id="id124">
+<h4>Arguments<a class="headerlink" href="#id124" title="Permalink 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>
@@ -4500,8 +4812,8 @@ a struct type of fields <code class="docutils literal 
notranslate"><span class="
 +-----------------+
 </pre></div>
 </div>
-<section id="id115">
-<h4>Arguments<a class="headerlink" href="#id115" title="Permalink to this 
heading">¶</a></h4>
+<section id="id125">
+<h4>Arguments<a class="headerlink" href="#id125" title="Permalink 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
@@ -4526,8 +4838,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="id116">
-<h4>Arguments<a class="headerlink" href="#id116" title="Permalink to this 
heading">¶</a></h4>
+<section id="id126">
+<h4>Arguments<a class="headerlink" href="#id126" title="Permalink 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>
@@ -4553,8 +4865,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="id117">
-<h4>Arguments<a class="headerlink" href="#id117" title="Permalink to this 
heading">¶</a></h4>
+<section id="id127">
+<h4>Arguments<a class="headerlink" href="#id127" title="Permalink 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>
@@ -4567,8 +4879,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="id118">
-<h4>Arguments<a class="headerlink" href="#id118" title="Permalink to this 
heading">¶</a></h4>
+<section id="id128">
+<h4>Arguments<a class="headerlink" href="#id128" title="Permalink 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>
@@ -4581,8 +4893,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="id119">
-<h4>Arguments<a class="headerlink" href="#id119" title="Permalink to this 
heading">¶</a></h4>
+<section id="id129">
+<h4>Arguments<a class="headerlink" href="#id129" title="Permalink 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>
@@ -4595,8 +4907,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="id120">
-<h4>Arguments<a class="headerlink" href="#id120" title="Permalink to this 
heading">¶</a></h4>
+<section id="id130">
+<h4>Arguments<a class="headerlink" href="#id130" title="Permalink 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>
@@ -4609,8 +4921,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="id121">
-<h4>Arguments<a class="headerlink" href="#id121" title="Permalink to this 
heading">¶</a></h4>
+<section id="id131">
+<h4>Arguments<a class="headerlink" href="#id131" title="Permalink 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>
@@ -4630,8 +4942,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="id122">
-<h4>Arguments<a class="headerlink" href="#id122" title="Permalink to this 
heading">¶</a></h4>
+<section id="id132">
+<h4>Arguments<a class="headerlink" href="#id132" title="Permalink 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
@@ -4647,8 +4959,8 @@ to cast to.</p></li>
 <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="id123">
-<h4>Arguments<a class="headerlink" href="#id123" title="Permalink to this 
heading">¶</a></h4>
+<section id="id133">
+<h4>Arguments<a class="headerlink" href="#id133" title="Permalink 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

Reply via email to