Skip to content

Commit dfc80c8

Browse files
committed
test(cubesql): Fix measure names for WideCube
1 parent 8177daf commit dfc80c8

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
@@ -226,35 +226,35 @@ pub fn get_test_meta() -> Vec<CubeMeta> {
226226
.chain(
227227
vec![
228228
CubeMetaMeasure {
229-
name: "KibanaSampleDataEcommerce.count".to_string(),
229+
name: "WideCube.count".to_string(),
230230
title: None,
231231
description: None,
232232
_type: "number".to_string(),
233233
agg_type: Some("count".to_string()),
234234
},
235235
CubeMetaMeasure {
236-
name: "KibanaSampleDataEcommerce.maxPrice".to_string(),
236+
name: "WideCube.maxPrice".to_string(),
237237
title: None,
238238
description: None,
239239
_type: "number".to_string(),
240240
agg_type: Some("max".to_string()),
241241
},
242242
CubeMetaMeasure {
243-
name: "KibanaSampleDataEcommerce.minPrice".to_string(),
243+
name: "WideCube.minPrice".to_string(),
244244
title: None,
245245
description: None,
246246
_type: "number".to_string(),
247247
agg_type: Some("min".to_string()),
248248
},
249249
CubeMetaMeasure {
250-
name: "KibanaSampleDataEcommerce.avgPrice".to_string(),
250+
name: "WideCube.avgPrice".to_string(),
251251
title: None,
252252
description: None,
253253
_type: "number".to_string(),
254254
agg_type: Some("avg".to_string()),
255255
},
256256
CubeMetaMeasure {
257-
name: "KibanaSampleDataEcommerce.countDistinct".to_string(),
257+
name: "WideCube.countDistinct".to_string(),
258258
title: None,
259259
description: None,
260260
_type: "number".to_string(),

0 commit comments

Comments
 (0)