create_p_lang_stmt.go 280 B

123456789101112131415161718
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreatePLangStmt struct {
  6. Replace bool
  7. Plname *string
  8. Plhandler *ast.List
  9. Plinline *ast.List
  10. Plvalidator *ast.List
  11. Pltrusted bool
  12. }
  13. func (n *CreatePLangStmt) Pos() int {
  14. return 0
  15. }