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

Function isSQLIdentifierChar

backend/plugin/parser/tsql/backup.go:469–474  ·  view source on GitHub ↗
(ch byte)

Source from the content-addressed store, hash-verified

467}
468
469func isSQLIdentifierChar(ch byte) bool {
470 return ch == '_' || ch == '@' || ch == '#' || ch == '$' ||
471 (ch >= '0' && ch <= '9') ||
472 (ch >= 'A' && ch <= 'Z') ||
473 (ch >= 'a' && ch <= 'z')
474}
475
476func skipQuotedSQL(source string, start, end int, closeCh byte) int {
477 i := start + 1

Callers 1

keywordMatchAtFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected