File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs-mdx/performance-and-observability/query-planning Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
110110Firebolt 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
114114Note that if the join is directed, when swapping the join inputs you also need to change the join direction.
115115``` sql
You can’t perform that action at this time.
0 commit comments