mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-12 15:51:01 +00:00
Lowercase all identifiers
This commit is contained in:
parent
126be915a9
commit
a30f59d5f7
1 changed files with 1 additions and 1 deletions
|
|
@ -1543,7 +1543,7 @@ func (p *Parser) parseIdent(desc string) (*Ident, error) {
|
|||
pos, tok, lit := p.scan()
|
||||
switch tok {
|
||||
case IDENT, QIDENT:
|
||||
return &Ident{Name: lit, NamePos: pos, Quoted: tok == QIDENT}, nil
|
||||
return &Ident{Name: strings.ToLower(lit), NamePos: pos, Quoted: tok == QIDENT}, nil
|
||||
default:
|
||||
return nil, p.errorExpected(pos, tok, desc)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue