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 bc582e5 commit e6de89bCopy full SHA for e6de89b
rust/cubesql/cubesql/src/compile/engine/df/wrapper.rs
@@ -527,6 +527,11 @@ impl CubeScanWrapperNode {
527
if let Some(cube_scan_node) =
528
node.as_any().downcast_ref::<CubeScanNode>()
529
{
530
+ if cube_scan_node.request.ungrouped != Some(true) {
531
+ return Err(CubeError::internal(format!(
532
+ "Expected ungrouped CubeScan node but found: {cube_scan_node:?}"
533
+ )));
534
+ }
535
Some(Arc::new(cube_scan_node.clone()))
536
} else {
537
return Err(CubeError::internal(format!(
0 commit comments