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 8f97727 commit 696fcc6Copy full SHA for 696fcc6
rust/cubesqlplanner/cubesqlplanner/src/planner/time_dimension/sql_interval.rs
@@ -56,7 +56,9 @@ impl SqlInterval {
56
} else if self.year != 0 {
57
"year"
58
} else {
59
- return Err(CubeError::internal("Attempt to get granularity from empty SqlInterval".to_string()));
+ return Err(CubeError::internal(
60
+ "Attempt to get granularity from empty SqlInterval".to_string(),
61
+ ));
62
};
63
Ok(res.to_string())
64
}
0 commit comments