mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-21 15:11:39 +03:00
17 lines
403 B
Go
17 lines
403 B
Go
|
package render
|
||
|
|
||
|
import (
|
||
|
"github.com/neilotoole/sq/libsq/ast"
|
||
|
"github.com/neilotoole/sq/libsq/core/errz"
|
||
|
)
|
||
|
|
||
|
func doFromTable(rc *Context, tblSel *ast.TblSelectorNode) (string, error) {
|
||
|
tblName, _ := tblSel.SelValue()
|
||
|
if tblName == "" {
|
||
|
return "", errz.Errorf("selector has empty table name: {%s}", tblSel.Text())
|
||
|
}
|
||
|
|
||
|
clause := "FROM " + rc.Dialect.Enquote(tblSel.TblName())
|
||
|
return clause, nil
|
||
|
}
|