(sqllex sqlLexer, s string)
| 153 | } |
| 154 | |
| 155 | func helpWithFunctionByName(sqllex sqlLexer, s string) int { |
| 156 | un := &tree.UnresolvedName{NumParts: 1, Parts: tree.NameParts{s}} |
| 157 | return helpWithFunction(sqllex, tree.ResolvableFunctionReference{FunctionReference: un}) |
| 158 | } |
| 159 | |
| 160 | const ( |
| 161 | hGroup = "" |
nothing calls this directly
no test coverage detected