define_stmt.go 273 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type DefineStmt struct {
  6. Kind ObjectType
  7. Oldstyle bool
  8. Defnames *ast.List
  9. Args *ast.List
  10. Definition *ast.List
  11. IfNotExists bool
  12. }
  13. func (n *DefineStmt) Pos() int {
  14. return 0
  15. }