Add minio go test (#13800)

### What problem does this PR solve?

1. Add go test
2. Update CI process

### Type of change

- [x] New Feature (non-breaking change which adds functionality)

---------

Signed-off-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Jin Hai
2026-03-27 18:12:56 +08:00
committed by GitHub
parent 2240fc778c
commit 1fff48b656
10 changed files with 775 additions and 69 deletions

View File

@@ -446,7 +446,7 @@ func (p *Parser) parseCreateCommand() (*Command, error) {
case TokenToken:
return p.parseCreateToken()
case TokenIndex:
return p.parseCreateIndex()
return p.parseCreateIndex()
default:
return nil, fmt.Errorf("unknown CREATE target: %s", p.curToken.Value)
}
@@ -691,7 +691,7 @@ func (p *Parser) parseDropCommand() (*Command, error) {
case TokenToken:
return p.parseDropToken()
case TokenIndex:
return p.parseDropIndex()
return p.parseDropIndex()
default:
return nil, fmt.Errorf("unknown DROP target: %s", p.curToken.Value)
}