Skip to content

Commit 50afb92

Browse files
committed
test(cubesql): Fix measure names for WideCube
1 parent d5df5c0 commit 50afb92

File tree

1 file changed

+5
-5
lines changed
  • rust/cubesql/cubesql/src/compile/test

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,39 +262,39 @@ pub fn get_test_meta() -> Vec<CubeMeta> {
262262
.chain(
263263
vec![
264264
CubeMetaMeasure {
265-
name: "KibanaSampleDataEcommerce.count".to_string(),
265+
name: "WideCube.count".to_string(),
266266
title: None,
267267
description: None,
268268
r#type: "number".to_string(),
269269
agg_type: Some("count".to_string()),
270270
meta: None,
271271
},
272272
CubeMetaMeasure {
273-
name: "KibanaSampleDataEcommerce.maxPrice".to_string(),
273+
name: "WideCube.maxPrice".to_string(),
274274
title: None,
275275
description: None,
276276
r#type: "number".to_string(),
277277
agg_type: Some("max".to_string()),
278278
meta: None,
279279
},
280280
CubeMetaMeasure {
281-
name: "KibanaSampleDataEcommerce.minPrice".to_string(),
281+
name: "WideCube.minPrice".to_string(),
282282
title: None,
283283
description: None,
284284
r#type: "number".to_string(),
285285
agg_type: Some("min".to_string()),
286286
meta: None,
287287
},
288288
CubeMetaMeasure {
289-
name: "KibanaSampleDataEcommerce.avgPrice".to_string(),
289+
name: "WideCube.avgPrice".to_string(),
290290
title: None,
291291
description: None,
292292
r#type: "number".to_string(),
293293
agg_type: Some("avg".to_string()),
294294
meta: None,
295295
},
296296
CubeMetaMeasure {
297-
name: "KibanaSampleDataEcommerce.countDistinct".to_string(),
297+
name: "WideCube.countDistinct".to_string(),
298298
title: None,
299299
description: None,
300300
r#type: "number".to_string(),

0 commit comments

Comments
 (0)