mirror of
https://github.com/pikami/cosmium.git
synced 2025-12-19 17:00:37 +00:00
Implement STRINGEQUALS
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user