Implement LEFT,LENGTH,LTRIM,REPLACE,REPLICATE,REVERSE,RIGHT,RTRIM,SUBSTRING,TRIM functions

This commit is contained in:
Pijus Kamandulis
2024-02-24 21:24:20 +02:00
parent f356f26d26
commit 2431307a12
7 changed files with 2244 additions and 541 deletions

View File

@@ -91,6 +91,16 @@ const (
FunctionCallIn FunctionCallType = "In"
FunctionCallUpper FunctionCallType = "Upper"
FunctionCallLower FunctionCallType = "Lower"
FunctionCallLeft FunctionCallType = "Left"
FunctionCallLength FunctionCallType = "Length"
FunctionCallLTrim FunctionCallType = "LTrim"
FunctionCallReplace FunctionCallType = "Replace"
FunctionCallReplicate FunctionCallType = "Replicate"
FunctionCallReverse FunctionCallType = "Reverse"
FunctionCallRight FunctionCallType = "Right"
FunctionCallRTrim FunctionCallType = "RTrim"
FunctionCallSubstring FunctionCallType = "Substring"
FunctionCallTrim FunctionCallType = "Trim"
)
type FunctionCall struct {