Implement STRINGEQUALS

This commit is contained in:
Pijus Kamandulis
2024-02-18 22:37:09 +02:00
parent 2702156cb3
commit c17509df38
8 changed files with 799 additions and 501 deletions

View File

@@ -20,6 +20,7 @@ const (
SelectItemTypeObject
SelectItemTypeArray
SelectItemTypeConstant
SelectItemTypeFunctionCall
)
type SelectItem struct {
@@ -75,3 +76,14 @@ type OrderExpression struct {
SelectItem SelectItem
Direction OrderDirection
}
type FunctionCallType string
const (
FunctionCallStringEquals FunctionCallType = "StringEquals"
)
type FunctionCall struct {
Arguments []interface{}
Type FunctionCallType
}