Skip to content

Commit 96d05f0

Browse files
authored
Allow - in event query (#242)
1 parent 784a8e0 commit 96d05f0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

internal/pubsub/query/syntax/scanner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ func (s *Scanner) invalid(ch rune) error {
306306
func isDigit(r rune) bool { return '0' <= r && r <= '9' }
307307

308308
func isTagRune(r rune) bool {
309-
return r == '.' || r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
309+
return r == '.' || r == '_' || r == '-' || unicode.IsLetter(r) || unicode.IsDigit(r)
310310
}
311311

312312
func isTimeRune(r rune) bool {

internal/pubsub/query/syntax/syntax_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ func TestScannerErrors(t *testing.T) {
7171
input string
7272
}{
7373
{`'incomplete string`},
74-
{`-23`},
7574
{`&`},
7675
{`DATE xyz-pdq`},
7776
{`DATE xyzp-dq-zv`},
@@ -169,6 +168,8 @@ func TestParseValid(t *testing.T) {
169168

170169
{"hash='136E18F7E4C348B780CF873A0BF43922E5BAFA63'", true},
171170
{"hash=136E18F7E4C348B780CF873A0BF43922E5BAFA63", false},
171+
172+
{"wasm-buy_now.collection_address='sei1y4ktds0hrkrwx86pmdpvy0nxxlycqzdhg5mh9vpsk4ra8f5sjxvsfkpzmu27'", true},
172173
}
173174

174175
for _, test := range tests {

0 commit comments

Comments
 (0)