Skip to content

Commit 876762b

Browse files
authored
chore: Fix join input roles in user-guided mode documentation (FIR-49135) (#1094)
2 parents d981eda + 84cec70 commit 876762b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs-mdx/performance-and-observability/query-planning/user-guided-mode.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Understanding this behavior is crucial for optimal performance.
9797

9898
### Build and probe side semantics
9999

100-
In user-guided mode, Firebolt implements joins using hash join algorithms where:
100+
Firebolt implements joins using hash join algorithms where:
101101
- The **right input** of each join becomes the **build side** - Firebolt creates a hash table from this data.
102102
- The **left input** of each join becomes the **probe side** - Firebolt scans this data and probes the hash table.
103103

@@ -108,8 +108,8 @@ JOIN small_table USING (id)
108108
```
109109

110110
Firebolt will:
111-
1. Build a hash table from `small_table` (the left input).
112-
2. Scan `large_table` (the right input) and probe the hash table for matches.
111+
1. Build a hash table from `small_table` (the right input).
112+
2. Scan `large_table` (the left input) and probe the hash table for matches.
113113

114114
Note that if the join is directed, when swapping the join inputs you also need to change the join direction.
115115
```sql

0 commit comments

Comments
 (0)