| 1647 | } |
| 1648 | |
| 1649 | type CreateRole struct { |
| 1650 | CreatePos Pos |
| 1651 | StatementEnd Pos |
| 1652 | IfNotExists bool |
| 1653 | OrReplace bool |
| 1654 | RoleNames []*RoleName |
| 1655 | AccessStorageType *Ident |
| 1656 | Settings []*RoleSetting |
| 1657 | } |
| 1658 | |
| 1659 | func (c *CreateRole) Pos() Pos { |
| 1660 | return c.CreatePos |
nothing calls this directly
no outgoing calls
no test coverage detected