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 c156a6c commit fef1bf1Copy full SHA for fef1bf1
rust/cubesql/cubesql/src/compile/engine/df/wrapper.rs
@@ -994,6 +994,14 @@ impl CubeScanWrapperNode {
994
"Unsupported ungrouped CubeScan as join subquery: {join_cube_scan:?}"
995
)));
996
}
997
+ } else if let Some(wrapped_select) =
998
+ node.as_any().downcast_ref::<WrappedSelectNode>()
999
+ {
1000
+ if wrapped_select.push_to_cube {
1001
+ return Err(CubeError::internal(format!(
1002
+ "Unsupported push_to_cube WrappedSelect as join subquery: {wrapped_select:?}"
1003
+ )));
1004
+ }
1005
} else {
1006
// TODO support more grouped cases here
1007
return Err(CubeError::internal(format!(
0 commit comments