File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
.github/actions/setup_build_tool
src/query/expression/src/sampler Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 49
49
export SCCACHE_S3_KEY_PREFIX="cache/sccache/"
50
50
export SCCACHE_S3_USE_SSL="true"
51
51
export SCCACHE_ERROR_LOG=/workspace/target/sccache.log
52
- export SCCACHE_LOG=info
52
+ export SCCACHE_LOG=debug
53
53
EOF
54
54
;;
55
55
62
62
export SCCACHE_GCS_BUCKET=databend-ci
63
63
export SCCACHE_GCS_KEY_PREFIX="cache/sccache/"
64
64
export SCCACHE_ERROR_LOG=/workspace/target/sccache.log
65
- export SCCACHE_LOG=info
65
+ export SCCACHE_LOG=debug
66
66
EOF
67
67
;;
68
68
Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ pub struct FixedRateSampler<R: Rng> {
33
33
}
34
34
35
35
impl < R : Rng > FixedRateSampler < R > {
36
+ /// Constructs a new `FixedRateSampler<R>`.
37
+ /// expectation: Average number of rows to sample one
36
38
pub fn new (
37
39
columns : Vec < usize > ,
38
40
block_size : usize ,
You can’t perform that action at this time.
0 commit comments