MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / FunctionDesc

Struct FunctionDesc

pkg/sql/ast/function.go:35–39  ·  view source on GitHub ↗

FunctionDesc represents a function descriptor used in SQL statements

Source from the content-addressed store, hash-verified

33
34// FunctionDesc represents a function descriptor used in SQL statements
35type 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)").

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected