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 83168dc commit c8d347eCopy full SHA for c8d347e
frontend/src/lib/types/LogicalNode.ts
@@ -100,9 +100,11 @@ export function isStreaming(node: CombinedLogicalNode): boolean {
100
);
101
} else if ('join' in node) {
102
// Check if any upstream joins are streaming
103
+ // @ts-expect-error - TODO: fix types
104
return node.join.joinParts?.some((joinPart) => isStreaming(joinPart.groupBy)) ?? true;
105
} else if ('joinParts' in node) {
106
// Check if any upstream joinParts are streaming
107
108
return node.joinParts?.some((joinPart) => isStreaming(joinPart.groupBy)) ?? true;
109
} else {
110
return false;
0 commit comments