diff --git a/sql/util.go b/sql/util.go index b0d6c6db..5159994d 100644 --- a/sql/util.go +++ b/sql/util.go @@ -105,6 +105,9 @@ func (p *Parser) declare(tok Token, lit string) (interface{}, error) { case IDENT: return &Ident{lit}, nil + case TABLE: + return &Table{lit}, nil + case NOW: return time.Now(), nil