Add authentication level checks to SQL INFO query

This commit is contained in:
Tobie Morgan Hitchcock 2016-11-21 18:52:51 +00:00
parent b25ce6d059
commit 2783c4c653

View file

@ -18,9 +18,9 @@ func (p *parser) parseInfoStatement() (stmt *InfoStatement, err error) {
stmt = &InfoStatement{}
stmt.KV = p.c.Get("KV").(string)
stmt.NS = p.c.Get("NS").(string)
stmt.DB = p.c.Get("DB").(string)
if stmt.KV, stmt.NS, stmt.DB, err = p.o.get(AuthDB); err != nil {
return nil, err
}
if _, _, exi := p.mightBe(FOR); exi {
if stmt.What, err = p.parseName(); err != nil {