Implement CONCAT function

This commit is contained in:
Pijus Kamandulis
2024-02-21 20:16:52 +02:00
parent f047395dd1
commit 8ab9680c99
7 changed files with 315 additions and 85 deletions

View File

@@ -82,6 +82,7 @@ type FunctionCallType string
const (
FunctionCallStringEquals FunctionCallType = "StringEquals"
FunctionCallIsDefined FunctionCallType = "IsDefined"
FunctionCallConcat FunctionCallType = "Concat"
)
type FunctionCall struct {