Skip to content

Commit 0edbf9a

Browse files
committed
in work
1 parent 0bfd4e0 commit 0edbf9a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

rust/cubenativeutils/src/wrappers/context.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
use super::{inner_types::InnerTypes, object_handle::NativeObjectHandle};
1+
use super::{inner_types::InnerTypes, object_handle::NativeObjectHandle, NativeBox};
22
use cubesql::CubeError;
3-
use std::any::Any;
4-
use std::rc::Rc;
3+
use std::{any::Any, rc::Rc};
54

65
pub trait NativeContext<IT: InnerTypes>: Clone {
76
fn boolean(&self, v: bool) -> Result<IT::Boolean, CubeError>;

rust/cubenativeutils/src/wrappers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub mod serializer;
88

99
pub use context::{NativeContextHolder, NativeContextHolderRef};
1010
pub use object::{
11-
NativeArray, NativeBoolean, NativeFunction, NativeNumber, NativeRoot, NativeString,
11+
NativeArray, NativeBoolean, NativeBox, NativeFunction, NativeNumber, NativeRoot, NativeString,
1212
NativeStruct, NativeType,
1313
};
1414
pub use object_handle::NativeObjectHandle;

rust/cubesqlplanner/cubesqlplanner/src/cube_bridge/proxy/cube_deps_collector.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ impl ProxyCollector for CubeDepsCollector {
145145
self.has_sql_fn = true;
146146
return Ok(Some(CubeDepsProxyRes::ToStringFn(format!(""))));
147147
}
148-
println!("!!!! cbbbb {}.{}", self.cube_name, property_name);
149148
if evaluator.is_name_of_symbol_in_cube(self.cube_name.clone(), property_name.clone())? {
150149
self.deps
151150
.push(CubeDepsCollectorProp::Symbol(property_name.clone()));

0 commit comments

Comments
 (0)