FunctionDesc represents a function descriptor used in SQL statements
| 33 | |
| 34 | // FunctionDesc represents a function descriptor used in SQL statements |
| 35 | type FunctionDesc struct { |
| 36 | Name ObjectName |
| 37 | Schema string // Optional schema qualifier |
| 38 | Arguments []string |
| 39 | } |
| 40 | |
| 41 | // String returns the SQL representation of this function descriptor, including |
| 42 | // the optional schema qualifier and argument list (e.g. "schema.func(arg1, arg2)"). |
nothing calls this directly
no outgoing calls
no test coverage detected