(identifier string)
| 1935 | } |
| 1936 | |
| 1937 | func normalizeCompletionIdentifier(identifier string) string { |
| 1938 | original, _ := NormalizeTSQLIdentifierText(unquoteDoubleQuoted(identifier)) |
| 1939 | return original |
| 1940 | } |
| 1941 | |
| 1942 | func (c *Completer) lookupCTEColumns(table string) []string { |
| 1943 | for _, cte := range c.cteTables { |
no test coverage detected