sq/libsq/ast/render/distinct.go

11 lines
187 B
Go
Raw Normal View History

package render
import "github.com/neilotoole/sq/libsq/ast"
func doDistinct(_ *Context, n *ast.UniqueNode) (string, error) {
if n == nil {
return "", nil
}
return "DISTINCT", nil
}