| 1815 | } |
| 1816 | |
| 1817 | type CreateUser struct { |
| 1818 | CreatePos Pos |
| 1819 | StatementEnd Pos |
| 1820 | IfNotExists bool |
| 1821 | OrReplace bool |
| 1822 | UserNames []*RoleName |
| 1823 | Authentication *AuthenticationClause |
| 1824 | ValidUntil *StringLiteral |
| 1825 | Hosts []*HostClause |
| 1826 | DefaultRole *DefaultRoleClause |
| 1827 | DefaultDatabase *Ident |
| 1828 | DefaultDbNone bool |
| 1829 | Grantees *GranteesClause |
| 1830 | Settings []*RoleSetting |
| 1831 | } |
| 1832 | |
| 1833 | func (c *CreateUser) Pos() Pos { |
| 1834 | return c.CreatePos |
nothing calls this directly
no outgoing calls
no test coverage detected