(sqllex sqlLexer, s string)
| 133 | } |
| 134 | |
| 135 | func helpWithFunctionByName(sqllex sqlLexer, s string) int { |
| 136 | un := &tree.UnresolvedName{NumParts: 1, Parts: tree.NameParts{s}} |
| 137 | return helpWithFunction(sqllex, tree.ResolvableFunctionReference{FunctionReference: un}) |
| 138 | } |
| 139 | |
| 140 | const ( |
| 141 | hGroup = "" |
no test coverage detected
searching dependent graphs…