create_user_mapping_stmt.go 251 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateUserMappingStmt struct {
  6. User *RoleSpec
  7. Servername *string
  8. IfNotExists bool
  9. Options *ast.List
  10. }
  11. func (n *CreateUserMappingStmt) Pos() int {
  12. return 0
  13. }