File tree 2 files changed +3
-2
lines changed
internal/pubsub/query/syntax
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ func (s *Scanner) invalid(ch rune) error {
306
306
func isDigit (r rune ) bool { return '0' <= r && r <= '9' }
307
307
308
308
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 )
310
310
}
311
311
312
312
func isTimeRune (r rune ) bool {
Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ func TestScannerErrors(t *testing.T) {
71
71
input string
72
72
}{
73
73
{`'incomplete string` },
74
- {`-23` },
75
74
{`&` },
76
75
{`DATE xyz-pdq` },
77
76
{`DATE xyzp-dq-zv` },
@@ -169,6 +168,8 @@ func TestParseValid(t *testing.T) {
169
168
170
169
{"hash='136E18F7E4C348B780CF873A0BF43922E5BAFA63'" , true },
171
170
{"hash=136E18F7E4C348B780CF873A0BF43922E5BAFA63" , false },
171
+
172
+ {"wasm-buy_now.collection_address='sei1y4ktds0hrkrwx86pmdpvy0nxxlycqzdhg5mh9vpsk4ra8f5sjxvsfkpzmu27'" , true },
172
173
}
173
174
174
175
for _ , test := range tests {
You can’t perform that action at this time.
0 commit comments