IsCompositeType returns true if the type is a composite type, such as an anonymous record, or a user-created composite type.
()
| 658 | // IsCompositeType returns true if the type is a composite type, such as an anonymous record, or a |
| 659 | // user-created composite type. |
| 660 | func (t *DoltgresType) IsCompositeType() bool { |
| 661 | return t.TypType == TypeType_Composite || t.IsRecordType() |
| 662 | } |
| 663 | |
| 664 | // IsRecordType returns true if the type is an anonymous record type. |
| 665 | func (t *DoltgresType) IsRecordType() bool { |
no test coverage detected