FunctionColumn represents a function argument in CREATE FUNCTION statement. It is not used directly during parsing, but replaces the ColumnItem or Placeholder input.
| 301 | // It is not used directly during parsing, but replaces the ColumnItem |
| 302 | // or Placeholder input. |
| 303 | type 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. |
| 312 | func (f FunctionColumn) ResolvedType() *types.T { |
nothing calls this directly
no outgoing calls
no test coverage detected