You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
3.0 KiB
43 lines
3.0 KiB
drop table if exists t1;
|
|
drop table if exists t2;
|
|
create table t1(a bigint, b bigint);
|
|
create table t2(a bigint, b bigint);
|
|
set session tidb_hashagg_partial_concurrency = 1;
|
|
set session tidb_hashagg_final_concurrency = 1;
|
|
explain select * from t1 where t1.a in (select t1.b + t2.b from t2);
|
|
id estRows task access object operator info
|
|
HashJoin_8 8000.00 root CARTESIAN semi join, other cond:eq(test.t1.a, plus(test.t1.b, test.t2.b))
|
|
├─TableReader_12(Build) 10000.00 root data:TableFullScan_11
|
|
│ └─TableFullScan_11 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo
|
|
└─TableReader_10(Probe) 10000.00 root data:TableFullScan_9
|
|
└─TableFullScan_9 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo
|
|
drop table if exists t;
|
|
create table t(a int primary key, b int, c int, d int, index idx(b,c,d));
|
|
insert into t values(1,1,1,1),(2,2,2,2),(3,2,2,2),(4,2,2,2),(5,2,2,2);
|
|
analyze table t;
|
|
explain select t.c in (select count(*) from t s use index(idx), t t1 where s.b = 1 and s.c = 1 and s.d = t.a and s.a = t1.a) from t;
|
|
id estRows task access object operator info
|
|
Projection_11 5.00 root Column#14
|
|
└─Apply_13 5.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#13)
|
|
├─TableReader_15(Build) 5.00 root data:TableFullScan_14
|
|
│ └─TableFullScan_14 5.00 cop[tikv] table:t keep order:false
|
|
└─StreamAgg_22(Probe) 1.00 root funcs:count(1)->Column#13
|
|
└─IndexJoin_25 0.50 root inner join, inner:TableReader_24, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a)
|
|
├─IndexReader_31(Build) 1.00 root index:IndexRangeScan_30
|
|
│ └─IndexRangeScan_30 1.00 cop[tikv] table:s, index:idx(b, c, d) range: decided by [eq(test.t.b, 1) eq(test.t.c, 1) eq(test.t.d, test.t.a)], keep order:false
|
|
└─TableReader_24(Probe) 1.00 root data:TableRangeScan_23
|
|
└─TableRangeScan_23 1.00 cop[tikv] table:t1 range: decided by [test.t.a], keep order:false
|
|
drop table if exists t;
|
|
create table t(a int, b int, c int);
|
|
explain select a from t t1 where t1.a = (select max(t2.a) from t t2 where t1.b=t2.b and t1.c=t2.b);
|
|
id estRows task access object operator info
|
|
HashJoin_12 7992.00 root inner join, equal:[eq(test.t.b, test.t.b) eq(test.t.c, test.t.b) eq(test.t.a, Column#9)]
|
|
├─Selection_17(Build) 6393.60 root not(isnull(Column#9))
|
|
│ └─HashAgg_23 7992.00 root group by:test.t.b, funcs:max(Column#10)->Column#9, funcs:firstrow(test.t.b)->test.t.b
|
|
│ └─TableReader_24 7992.00 root data:HashAgg_18
|
|
│ └─HashAgg_18 7992.00 cop[tikv] group by:test.t.b, funcs:max(test.t.a)->Column#10
|
|
│ └─Selection_22 9990.00 cop[tikv] not(isnull(test.t.b))
|
|
│ └─TableFullScan_21 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo
|
|
└─TableReader_16(Probe) 9970.03 root data:Selection_15
|
|
└─Selection_15 9970.03 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b)), not(isnull(test.t.c))
|
|
└─TableFullScan_14 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo
|
|
|