Skip to content

Commit 5cf2bc1

Browse files
committed
refactor(cubesql): Add explicit type in var! macro
1 parent 4a16e65 commit 5cf2bc1

File tree

1 file changed

+1
-1
lines changed
  • rust/cubesql/cubesql/src/compile/rewrite

1 file changed

+1
-1
lines changed

rust/cubesql/cubesql/src/compile/rewrite/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ macro_rules! var_list_iter {
560560
#[macro_export]
561561
macro_rules! var {
562562
($var_str:expr) => {
563-
$var_str.parse().unwrap()
563+
$var_str.parse::<::egg::Var>().unwrap()
564564
};
565565
}
566566

0 commit comments

Comments
 (0)