Skip to content

Commit d21f15e

Browse files
authored
explain joins: fix the TableReader operator (pingcap#14929)
1 parent f318380 commit d21f15e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

explain-joins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ ANALYZE TABLE t1, t2;
3939

4040
## Index Join
4141

42-
If the number of estimated rows that need to be joined is small (typically less than 10000 rows), it is preferable to use the index join method. This method of join works similar to the primary method of join used in MySQL. In the following example, the operator `├─TableReader_28(Build)` first reads the table `t1`. For each row that matches, TiDB will probe the table `t2`:
42+
If the number of estimated rows that need to be joined is small (typically less than 10000 rows), it is preferable to use the index join method. This method of join works similar to the primary method of join used in MySQL. In the following example, the operator `├─TableReader_29(Build)` first reads the table `t1`. For each row that matches, TiDB will probe the table `t2`:
4343

4444
> **Note:**
4545
>

0 commit comments

Comments
 (0)