Skip to content

Commit 5a4858e

Browse files
committed
move test to stateful suite (which use non-blocking io)
1 parent e2aa6cf commit 5a4858e

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

src/query/sql/src/planner/bloom_index.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ use databend_common_ast::parser::tokenize_sql;
2020
use databend_common_ast::parser::Dialect;
2121
use databend_common_exception::ErrorCode;
2222
use databend_common_exception::Result;
23-
use databend_common_expression::{is_stream_column_id, TableSchema};
23+
use databend_common_expression::is_stream_column_id;
2424
use databend_common_expression::ComputedExpr;
2525
use databend_common_expression::FieldIndex;
2626
use databend_common_expression::TableDataType;
2727
use databend_common_expression::TableField;
28+
use databend_common_expression::TableSchema;
2829
use databend_common_expression::TableSchemaRef;
2930
use databend_common_meta_app::tenant::Tenant;
3031
use databend_common_settings::Settings;

tests/suites/0_stateless/20+_others/20_0017_runtime_probe_side_bloom_pruning.sh renamed to tests/suites/1_stateful/02_query/02_0006_runtime_probe_side_bloom_pruning.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
44
. "$CURDIR"/../../../shell_env.sh
55

6+
7+
# As currently, runtime bloom pruning (probe side) only support non-blocking block reader
8+
# this case must be tested with non-blocking storage type (minio / s3 etc, not local fs)
9+
610
echo "create or replace database rt_bloom" | $BENDSQL_CLIENT_CONNECT
711

812
echo "create table rt_bloom.probe(c uint64) as select * from numbers(100000)" | $BENDSQL_CLIENT_CONNECT

0 commit comments

Comments
 (0)