Skip to content

Commit

Permalink
explain joins: fix the TableReader operator (pingcap#14929)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oreoxmt authored Sep 27, 2023
1 parent f318380 commit d21f15e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explain-joins.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ANALYZE TABLE t1, t2;

## Index Join

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`:
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`:

> **Note:**
>
Expand Down

0 comments on commit d21f15e

Please sign in to comment.