collate_clause.go 212 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CollateClause struct {
  6. Arg ast.Node
  7. Collname *ast.List
  8. Location int
  9. }
  10. func (n *CollateClause) Pos() int {
  11. return n.Location
  12. }