mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-30 11:46:08 +03:00
11 lines
187 B
Go
11 lines
187 B
Go
|
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
|
||
|
}
|