MCPcopy Create free account
hub / github.com/bytebase/bytebase / unquoteDoubleQuoted

Function unquoteDoubleQuoted

backend/plugin/parser/tsql/completion.go:1602–1607  ·  view source on GitHub ↗
(identifier string)

Source from the content-addressed store, hash-verified

1600}
1601
1602func unquoteDoubleQuoted(identifier string) string {
1603 if len(identifier) >= 2 && identifier[0] == '"' && identifier[len(identifier)-1] == '"' {
1604 return identifier[1 : len(identifier)-1]
1605 }
1606 return identifier
1607}
1608
1609type objectFlag int
1610

Callers 4

parseMultipartIdentifierFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected