mirror of
https://github.com/pikami/cosmium.git
synced 2025-12-19 17:00:37 +00:00
Implement LEFT,LENGTH,LTRIM,REPLACE,REPLICATE,REVERSE,RIGHT,RTRIM,SUBSTRING,TRIM functions
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user