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/datafusion.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 662d740ed5 Publish built docs triggered by 
2dd17b9e6c0f2d55f6ad0a188709e48a5426b155
662d740ed5 is described below

commit 662d740ed59577b13b8ae82fe166c61b7bd10d06
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Nov 19 01:02:45 2025 +0000

    Publish built docs triggered by 2dd17b9e6c0f2d55f6ad0a188709e48a5426b155
---
 .asf.yaml                              | 62 ++--------------------------------
 _sources/user-guide/expressions.md.txt |  4 +--
 user-guide/expressions.html            |  4 +--
 3 files changed, 6 insertions(+), 64 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 2f77331adf..0588a300a5 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -54,72 +54,14 @@ github:
     # needs to be updated as part of the release process
     # .asf.yaml doesn't support wildcard branch protection rules, only exact 
branch names
     # 
https://github.com/apache/infrastructure-asfyaml?tab=readme-ov-file#branch-protection
-    # Keeping set of protected branches for future releases
-    # Meanwhile creating a prerelease script that will update the branch 
protection names
-    # automatically. Keep track on it 
https://github.com/apache/datafusion/issues/17134
+    # these branches protection blocks autogenerated during release process 
which is described in
+    # 
https://github.com/apache/datafusion/tree/main/dev/release#2-add-a-protection-to-release-candidate-branch
     branch-50:
       required_pull_request_reviews:
         required_approving_review_count: 1
     branch-51:
       required_pull_request_reviews:
         required_approving_review_count: 1
-#    branch-52:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-53:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-54:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-55:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-56:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-57:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-58:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-59:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-60:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-61:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-62:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-63:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-64:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-65:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-66:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-67:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-68:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-69:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
-#    branch-70:
-#      required_pull_request_reviews:
-#        required_approving_review_count: 1
   pull_requests:
     # enable updating head branches of pull requests
     allow_update_branch: true
diff --git a/_sources/user-guide/expressions.md.txt 
b/_sources/user-guide/expressions.md.txt
index 56e4369a9b..929f8b2e46 100644
--- a/_sources/user-guide/expressions.md.txt
+++ b/_sources/user-guide/expressions.md.txt
@@ -179,8 +179,8 @@ select log(-1), log(0), sqrt(-1);
 | ascii(character)                               | Returns a numeric 
representation of the character (`character`). Example: `ascii('a') -> 97`      
                                                                                
                                                       |
 | bit_length(text)                               | Returns the length of the 
string (`text`) in bits. Example: `bit_length('spider') -> 48`                  
                                                                                
                                               |
 | btrim(text, characters)                        | Removes all specified 
characters (`characters`) from both the beginning and the end of the string 
(`text`). Example: `btrim('aabchelloccb', 'abc') -> hello`                      
                                                       |
-| char_length(text)                              | Returns number of 
characters in the string (`text`). The same as `character_length` and `length`. 
Example: `character_length('lion') -> 4`                                        
                                                       |
-| character_length(text)                         | Returns number of 
characters in the string (`text`). The same as `char_length` and `length`. 
Example: `char_length('lion') -> 4`                                             
                                                            |
+| char_length(text)                              | Returns number of 
characters in the string (`text`). The same as `character_length` and `length`. 
Example: `char_length('lion') -> 4`                                             
                                                       |
+| character_length(text)                         | Returns number of 
characters in the string (`text`). The same as `char_length` and `length`. 
Example: `character_length('lion') -> 4`                                        
                                                            |
 | concat(value1, [value2 [, ...]])               | Concatenates the text 
representations (`value1, [value2 [, ...]]`) of all the arguments. NULL 
arguments are ignored. Example: `concat('aaa', 'bbc', NULL, 321) -> aaabbc321`  
                                                           |
 | concat_ws(separator, value1, [value2 [, ...]]) | Concatenates the text 
representations (`value1, [value2 [, ...]]`) of all the arguments with the 
separator (`separator`). NULL arguments are ignored. `concat_ws('/', 'path', 
'to', NULL, 'my', 'folder', 123) -> path/to/my/folder/123` |
 | chr(integer)                                   | Returns a character by its 
numeric representation (`integer`). Example: `chr(90) -> 8`                     
                                                                                
                                              |
diff --git a/user-guide/expressions.html b/user-guide/expressions.html
index 7e81336c7a..6d24f58639 100644
--- a/user-guide/expressions.html
+++ b/user-guide/expressions.html
@@ -759,10 +759,10 @@ but these operators always return a <code class="docutils 
literal notranslate"><
 <td><p>Removes all specified characters (<code class="docutils literal 
notranslate"><span class="pre">characters</span></code>) from both the 
beginning and the end of the string (<code class="docutils literal 
notranslate"><span class="pre">text</span></code>). Example: <code 
class="docutils literal notranslate"><span 
class="pre">btrim('aabchelloccb',</span> <span class="pre">'abc')</span> <span 
class="pre">-&gt;</span> <span class="pre">hello</span></code></p></td>
 </tr>
 <tr class="row-odd"><td><p>char_length(text)</p></td>
-<td><p>Returns number of characters in the string (<code class="docutils 
literal notranslate"><span class="pre">text</span></code>). The same as <code 
class="docutils literal notranslate"><span 
class="pre">character_length</span></code> and <code class="docutils literal 
notranslate"><span class="pre">length</span></code>. Example: <code 
class="docutils literal notranslate"><span 
class="pre">character_length('lion')</span> <span class="pre">-&gt;</span> 
<span class="pre">4</span></code></p></td>
+<td><p>Returns number of characters in the string (<code class="docutils 
literal notranslate"><span class="pre">text</span></code>). The same as <code 
class="docutils literal notranslate"><span 
class="pre">character_length</span></code> and <code class="docutils literal 
notranslate"><span class="pre">length</span></code>. Example: <code 
class="docutils literal notranslate"><span 
class="pre">char_length('lion')</span> <span class="pre">-&gt;</span> <span 
class="pre">4</span></code></p></td>
 </tr>
 <tr class="row-even"><td><p>character_length(text)</p></td>
-<td><p>Returns number of characters in the string (<code class="docutils 
literal notranslate"><span class="pre">text</span></code>). The same as <code 
class="docutils literal notranslate"><span 
class="pre">char_length</span></code> and <code class="docutils literal 
notranslate"><span class="pre">length</span></code>. Example: <code 
class="docutils literal notranslate"><span 
class="pre">char_length('lion')</span> <span class="pre">-&gt;</span> <span 
class="pre">4</span></code></p></td>
+<td><p>Returns number of characters in the string (<code class="docutils 
literal notranslate"><span class="pre">text</span></code>). The same as <code 
class="docutils literal notranslate"><span 
class="pre">char_length</span></code> and <code class="docutils literal 
notranslate"><span class="pre">length</span></code>. Example: <code 
class="docutils literal notranslate"><span 
class="pre">character_length('lion')</span> <span class="pre">-&gt;</span> 
<span class="pre">4</span></code></p></td>
 </tr>
 <tr class="row-odd"><td><p>concat(value1, [value2 [, …]])</p></td>
 <td><p>Concatenates the text representations (<code class="docutils literal 
notranslate"><span class="pre">value1,</span> <span class="pre">[value2</span> 
<span class="pre">[,</span> <span class="pre">...]]</span></code>) of all the 
arguments. NULL arguments are ignored. Example: <code class="docutils literal 
notranslate"><span class="pre">concat('aaa',</span> <span 
class="pre">'bbc',</span> <span class="pre">NULL,</span> <span 
class="pre">321)</span> <span class="pre">-&gt;</span> <span [...]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to