- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for QuotedIdentifier (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/s3select/sql/parser.go
ID *Identifier `parser:"| \".\" @@"` } // QuotedIdentifier is a type for parsed strings that are double // quoted. type QuotedIdentifier string // Capture interface used by participle func (qi *QuotedIdentifier) Capture(values []string) error { // Remove enclosing quotes n := len(values[0]) r := values[0][1 : n-1] // Translate doubled quotes *qi = QuotedIdentifier(strings.ReplaceAll(r, `""`, `"`)) return nil }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Jan 18 07:03:17 GMT 2024 - 12.9K bytes - Click Count (0)