Toggle navigation
Home
org.neo4j.kernel.builtinprocs.SchemaInfoResult to org.neo4j.kernel.builtinprocs.RelationshipPropertySchemaInfoResult
No. of Instances - 4
No. of Commits - 2
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Method invocation
calculateTabularResultStream
to
calculateTabularResultStreamForRels
calculateTabularResultStream
to
calculateTabularResultStreamForRels
Rename Variable
propertySchema
to
relationshipPropertySchema
propertySchema
to
relationshipPropertySchema
Cascading Type Change (Similar)
SchemaInfoResult
to
RelationshipPropertySchemaInfoResult
Add or Remove Method invocation
results.add(new RelationshipPropertySchemaInfoResult(RELATIONSHIP,Collections.singletonList(name),propName,valueTypeListHelper.getCypherTypesList(),true))
to
results.add(new RelationshipPropertySchemaInfoResult(name,propName,valueTypeListHelper.getCypherTypesList(),false))
results.add(new RelationshipPropertySchemaInfoResult(RELATIONSHIP,Collections.singletonList(name),propName,valueTypeListHelper.getCypherTypesList(),valueTypeListHelper.isNullable()))
to
results.add(new RelationshipPropertySchemaInfoResult(name,propName,valueTypeListHelper.getCypherTypesList(),valueTypeListHelper.isMandatory()))
relationshipTypeIdANDPropertyTypeIdToValueTypeMapping.get(Pair.of(typeId,propId))
to
relMappings.relationshipTypeIdANDPropertyTypeIdToValueType.get(Pair.of(typeId,propId))
nullableRelationshipTypes.contains(typeId)
to
relMappings.nullableRelationshipTypes.contains(typeId)