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

Method IsCompositeType

server/types/type.go:660–662  ·  view source on GitHub ↗

IsCompositeType returns true if the type is a composite type, such as an anonymous record, or a user-created composite type.

()

Source from the content-addressed store, hash-verified

658// IsCompositeType returns true if the type is a composite type, such as an anonymous record, or a
659// user-created composite type.
660func (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.
665func (t *DoltgresType) IsRecordType() bool {

Callers 11

CompareMethod · 0.95
IoInputMethod · 0.95
IoOutputMethod · 0.95
CallReceiveMethod · 0.95
getRecordCastMethod · 0.80
dolt_recordtrim.goFile · 0.80
WithChildrenMethod · 0.80
GetVariableMethod · 0.80
RowIterMethod · 0.80

Calls 1

IsRecordTypeMethod · 0.95

Tested by

no test coverage detected