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

mbudiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/main by this push:
     new f44ed0af8e [CALCITE-6487] TRIM function documentation refers to 
string1 two times
f44ed0af8e is described below

commit f44ed0af8efb10d326d927418110fe0ab40e76ca
Author: Tim Grein <[email protected]>
AuthorDate: Sat Jul 20 00:21:26 2024 +0200

    [CALCITE-6487] TRIM function documentation refers to string1 two times
---
 site/_docs/reference.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site/_docs/reference.md b/site/_docs/reference.md
index a39f9f1db6..06a66ac65d 100644
--- a/site/_docs/reference.md
+++ b/site/_docs/reference.md
@@ -1377,7 +1377,7 @@ comp:
 | LOWER(string)              | Returns a character string converted to lower 
case
 | POSITION(substring IN string) | Returns the position of the first occurrence 
of *substring* in *string*
 | POSITION(substring IN string FROM integer) | Returns the position of the 
first occurrence of *substring* in *string* starting at a given point (not 
standard SQL)
-| TRIM( { BOTH &#124; LEADING &#124; TRAILING } string1 FROM string2) | 
Removes the longest string containing only the characters in *string1* from the 
start/end/both ends of *string1*
+| TRIM( { BOTH &#124; LEADING &#124; TRAILING } string1 FROM string2) | 
Removes the longest string containing only the characters in *string1* from the 
start/end/both ends of *string2*
 | OVERLAY(string1 PLACING string2 FROM integer [ FOR integer2 ]) | Replaces a 
substring of *string1* with *string2*
 | SUBSTRING(string FROM integer)  | Returns a substring of a character string 
starting at a given point
 | SUBSTRING(string FROM integer FOR integer) | Returns a substring of a 
character string starting at a given point with a given length

Reply via email to