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

Method tryParseUUID

parser/parser_common.go:191–196  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

189}
190
191func (p *Parser) tryParseUUID() (*UUID, error) {
192 if !p.matchKeyword(KeywordUuid) {
193 return nil, nil // nolint
194 }
195 return p.parseUUID()
196}
197
198func (p *Parser) tryParseComment() (*StringLiteral, error) {
199 if !p.tryConsumeKeywords(KeywordComment) {

Callers 4

parseCreateViewMethod · 0.95
parseCreateLiveViewMethod · 0.95
parseCreateDictionaryMethod · 0.95
parseCreateTableMethod · 0.95

Calls 2

matchKeywordMethod · 0.95
parseUUIDMethod · 0.95

Tested by

no test coverage detected