mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-20 14:41:31 +03:00
17 lines
293 B
Go
17 lines
293 B
Go
|
package render
|
||
|
|
||
|
import "github.com/neilotoole/sq/libsq/ast"
|
||
|
|
||
|
func doWhere(rc *Context, where *ast.WhereNode) (string, error) {
|
||
|
if where == nil {
|
||
|
return "", nil
|
||
|
}
|
||
|
sql, err := rc.Renderer.Expr(rc, where.Expr())
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
|
||
|
sql = "WHERE " + sql
|
||
|
return sql, nil
|
||
|
}
|