Skip to content

Commit 21a96a4

Browse files
authored
chore(ci): change the sccache log level to debug (#17790)
* debug * touch
1 parent 25ee2d6 commit 21a96a4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/actions/setup_build_tool/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
export SCCACHE_S3_KEY_PREFIX="cache/sccache/"
5050
export SCCACHE_S3_USE_SSL="true"
5151
export SCCACHE_ERROR_LOG=/workspace/target/sccache.log
52-
export SCCACHE_LOG=info
52+
export SCCACHE_LOG=debug
5353
EOF
5454
;;
5555
@@ -62,7 +62,7 @@ runs:
6262
export SCCACHE_GCS_BUCKET=databend-ci
6363
export SCCACHE_GCS_KEY_PREFIX="cache/sccache/"
6464
export SCCACHE_ERROR_LOG=/workspace/target/sccache.log
65-
export SCCACHE_LOG=info
65+
export SCCACHE_LOG=debug
6666
EOF
6767
;;
6868

src/query/expression/src/sampler/fixed_rate_sampler.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ pub struct FixedRateSampler<R: Rng> {
3333
}
3434

3535
impl<R: Rng> FixedRateSampler<R> {
36+
/// Constructs a new `FixedRateSampler<R>`.
37+
/// expectation: Average number of rows to sample one
3638
pub fn new(
3739
columns: Vec<usize>,
3840
block_size: usize,

0 commit comments

Comments
 (0)