Skip to content

Commit cbf40df

Browse files
authored
fix(cubestore): Don't print all tables in error message (cube-js#10442)
1 parent 22286f5 commit cbf40df

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

  • rust/cubestore/cubestore/src/queryplanner

rust/cubestore/cubestore/src/queryplanner/mod.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -559,10 +559,9 @@ impl ContextProvider for MetaStoreSchemaProvider {
559559
})
560560
.map(|p| provider_as_source(p))
561561
.ok_or_else(|| {
562-
DataFusionError::Plan(format!(
563-
"Table {} was not found\n{:?}\n{:?}",
564-
name, table_path, self._data
565-
))
562+
trace!("Table {} was not found, state: {:?}", name, self._data);
563+
564+
DataFusionError::Plan(format!("Table {} was not found\n{:?}", name, table_path))
566565
})
567566
}
568567

0 commit comments

Comments
 (0)