create_role_stmt.go 213 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateRoleStmt struct {
  6. StmtType RoleStmtType
  7. Role *string
  8. Options *ast.List
  9. }
  10. func (n *CreateRoleStmt) Pos() int {
  11. return 0
  12. }