alter_role_stmt.go 201 B

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