Skip to content

Commit e51d377

Browse files
committed
fix test for cubesql fix
1 parent 7fed185 commit e51d377

File tree

1 file changed

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

1 file changed

+4
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2219,7 +2219,10 @@ limit
22192219
V1LoadRequestQueryTimeDimension {
22202220
dimension: "KibanaSampleDataEcommerce.order_date".to_string(),
22212221
granularity: Some("month".to_string()),
2222-
date_range: None,
2222+
date_range: Some(json!(vec![
2223+
"2023-07-08T00:00:00.000Z".to_string(),
2224+
"2023-10-07T23:59:59.999Z".to_string()
2225+
])),
22232226
}
22242227
]),
22252228
order: Some(vec![]),

0 commit comments

Comments
 (0)