We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42b604 commit 42dc73eCopy full SHA for 42dc73e
graphgen/engine.py
@@ -84,10 +84,6 @@ def _get_input_dataset(
84
85
main_ds = self.datasets[deps[0]]
86
other_dss = [self.datasets[d] for d in deps[1:]]
87
- if not all(ds.schema() == main_ds.schema() for ds in other_dss):
88
- raise ValueError(
89
- f"Union requires all datasets to have the same schema for node {node.id}"
90
- )
91
return main_ds.union(*other_dss)
92
93
def _execute_node(self, node: Node, initial_ds: ray.data.Dataset):
0 commit comments