IsResolvedType whether the type is resolved and has complete information. This is used to resolve types during analyzing when non-built-in type is used.
()
| 690 | // IsResolvedType whether the type is resolved and has complete information. |
| 691 | // This is used to resolve types during analyzing when non-built-in type is used. |
| 692 | func (t *DoltgresType) IsResolvedType() bool { |
| 693 | return t != nil && !t.IsUnresolved |
| 694 | } |
| 695 | |
| 696 | // IsValidForPolymorphicType returns whether the given type is valid for the calling polymorphic type. |
| 697 | func (t *DoltgresType) IsValidForPolymorphicType(target *DoltgresType) bool { |
no outgoing calls
no test coverage detected