MCPcopy Create free account
hub / github.com/dolthub/doltgresql / FunctionColumn

Struct FunctionColumn

postgres/parser/sem/tree/create_function.go:303–309  ·  view source on GitHub ↗

FunctionColumn represents a function argument in CREATE FUNCTION statement. It is not used directly during parsing, but replaces the ColumnItem or Placeholder input.

Source from the content-addressed store, hash-verified

301// It is not used directly during parsing, but replaces the ColumnItem
302// or Placeholder input.
303type FunctionColumn struct {
304 Name string
305 Idx uint16
306 Typ *pgtypes.DoltgresType
307 FromCreate bool
308 Val any
309}
310
311// ResolvedType implements the TypedExpr interface.
312func (f FunctionColumn) ResolvedType() *types.T {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected