MCPcopy Create free account
hub / github.com/AfterShip/clickhouse-sql-parser / CreateUser

Struct CreateUser

parser/ast.go:1817–1831  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1815}
1816
1817type 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
1833func (c *CreateUser) Pos() Pos {
1834 return c.CreatePos

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected