(sqllex sqlLexer, s string)
| 137 | } |
| 138 | |
| 139 | func helpWithFunctionByName(sqllex sqlLexer, s string) int { |
| 140 | un := &tree.UnresolvedName{NumParts: 1, Parts: tree.NameParts{s}} |
| 141 | return helpWithFunction(sqllex, tree.ResolvableFunctionReference{FunctionReference: un}) |
| 142 | } |
| 143 | |
| 144 | const ( |
| 145 | hGroup = "" |
nothing calls this directly
no test coverage detected
searching dependent graphs…