summaryrefslogtreecommitdiff
path: root/internal/mapr/token.go
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2023-09-08 07:45:51 +0300
committerPaul Buetow <pbuetow@mimecast.com>2023-09-08 07:45:51 +0300
commit85780654df870dc4170b93a8ed5a5dbfa917fe5d (patch)
tree1d2843e212def6bcdead71ef8c814e8cf55f31a5 /internal/mapr/token.go
parent51747cc62ae47af7d369e3e43d41f156835e9dfa (diff)
parentd6efc889f1dc9582ba8006633376c022c945a126 (diff)
Merge branch 'develop'
Diffstat (limited to 'internal/mapr/token.go')
-rw-r--r--internal/mapr/token.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/internal/mapr/token.go b/internal/mapr/token.go
index 6ac7631..48d1192 100644
--- a/internal/mapr/token.go
+++ b/internal/mapr/token.go
@@ -9,8 +9,9 @@ var keywords = [...]string{"select", "from", "where", "set", "group", "rorder",
// Represents a parsed token, used to parse the mapr query.
type token struct {
- str string
- isBareword bool
+ str string
+ isBareword bool
+ quotesStripped bool
}
func (t token) isKeyword() bool {
@@ -71,8 +72,9 @@ func tokensConsume(tokens []token) ([]token, []token) {
stripped := t.str[1 : length-1]
//dlog.Common.Trace("stripped", stripped)
t := token{
- str: stripped,
- isBareword: t.isBareword,
+ str: stripped,
+ isBareword: t.isBareword,
+ quotesStripped: true,
}
consumed = append(consumed, t)
continue