Skip to content

Commit cde8b4d

Browse files
authored
ci: add test-private-task-warehouse.sh on ci private_task (#18447)
1 parent 64981ed commit cde8b4d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/test_private_tasks/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ runs:
3131
shell: bash
3232
run: |
3333
bash ./tests/task/test-private-task.sh
34+
bash ./tests/task/test-private-task-warehouse.sh
3435
3536
- name: Upload failure
3637
if: failure()

src/query/expression/src/types/compute_view.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,9 @@ where
168168
}
169169

170170
fn compute_domain(domain: &SimpleDomain<F>) -> SimpleDomain<T> {
171-
SimpleDomain {
172-
min: domain.min.as_(),
173-
max: domain.max.as_(),
174-
}
171+
let min = domain.min.as_();
172+
let max = domain.max.as_();
173+
SimpleDomain { min, max }
175174
}
176175
}
177176

0 commit comments

Comments
 (0)