Increase bit length of SQL TOKEN keys

This commit is contained in:
Tobie Morgan Hitchcock 2016-11-22 19:09:02 +00:00
parent 8cdae77483
commit f150e5b587

View file

@ -124,7 +124,7 @@ func (p *parser) parseCond() (exp Expr, err error) {
func (p *parser) parseRand() (exp []byte, err error) {
exp = rand.New(64)
exp = rand.New(128)
return