Skip to content

Commit

Permalink
fix test for cubesql fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KSDaemon committed Jan 24, 2025
1 parent ec5e300 commit 120ecf4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rust/cubesql/cubesql/src/compile/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2219,7 +2219,10 @@ limit
V1LoadRequestQueryTimeDimension {
dimension: "KibanaSampleDataEcommerce.order_date".to_string(),
granularity: Some("month".to_string()),
date_range: None,
date_range: Some(json!(vec![
"2023-07-08T00:00:00.000Z".to_string(),
"2023-10-07T23:59:59.999Z".to_string()
])),
}
]),
order: Some(vec![]),
Expand Down

0 comments on commit 120ecf4

Please sign in to comment.