Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
ngrislain committed Dec 11, 2023
1 parent 72657ac commit 9635669
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/relation/rewriting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1984,7 +1984,7 @@ mod tests {
.with(expr!(count(a)))
//.with_group_by_column("c")
.with(("twice_c", expr!(first(2*c))))
.group_by(expr!(c))
.group_by(expr!(2*c))
.build();
let distinct_relation = relation.clone().distinct();
distinct_relation.display_dot();
Expand Down
2 changes: 1 addition & 1 deletion src/sql/relation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ mod tests {
assert_eq!(
relation.data_type(),
DataType::structured(vec![
("case_d", DataType::float_values([1., 5.])),
("field_fp0x", DataType::integer_interval(0, 30)),
("my_count", DataType::integer_interval(0, 10)),
])
);
Expand Down

0 comments on commit 9635669

Please sign in to comment.