Skip to content

Commit

Permalink
spline #831 fix persistent model builder for schema agnostic operatio…
Browse files Browse the repository at this point in the history
…n graphs
  • Loading branch information
wajda committed Apr 7, 2021
1 parent 2849c37 commit bf1cd99
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,13 @@ class ExecutionPlanPersistentModelBuilder private(
}
}

this._pmEmits :+= EdgeDef.Emits.edge(
opKey,
keyCreator.asSchemaKey(schemaInfoByOpId(op.id).oid),
epPKey
)
for (schemaInfo <- schemaInfoByOpId.get(op.id)) {
this._pmEmits :+= EdgeDef.Emits.edge(
opKey,
keyCreator.asSchemaKey(schemaInfo.oid),
epPKey
)
}

this._pmFollows ++= op.childIds.zipWithIndex map {
case (childId, i) =>
Expand Down

0 comments on commit bf1cd99

Please sign in to comment.