Skip to content

Commit 684e43d

Browse files
committed
fix main
Signed-off-by: Ruihang Xia <[email protected]>
1 parent 79f494a commit 684e43d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev/update_config_docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ In conclusion, for queries under a very tight memory limit, it's recommended to
167167
set `target_partitions` and `batch_size` to smaller values.
168168
169169
```sql
170-
-- Query still gets paralleized, but each partition will have more memory to use
170+
-- Query still gets parallelized, but each partition will have more memory to use
171171
SET datafusion.execution.target_partitions = 4;
172172
-- Smaller than the default '8192', while still keep the benefit of vectorized execution
173173
SET datafusion.execution.batch_size = 1024;

docs/source/library-user-guide/upgrading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ for more details.
152152

153153
### Added `ExecutionPlan::reset_state`
154154

155-
In order to fix a bug in DataFusion `49.0.0` where dynamic filters (currently only generated in the precense of a query such as `ORDER BY ... LIMIT ...`)
155+
In order to fix a bug in DataFusion `49.0.0` where dynamic filters (currently only generated in the presence of a query such as `ORDER BY ... LIMIT ...`)
156156
produced incorrect results in recursive queries, a new method `reset_state` has been added to the `ExecutionPlan` trait.
157157

158158
Any `ExecutionPlan` that needs to maintain internal state or references to other nodes in the execution plan tree should implement this method to reset that state.

docs/source/user-guide/configs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ In conclusion, for queries under a very tight memory limit, it's recommended to
239239
set `target_partitions` and `batch_size` to smaller values.
240240

241241
```sql
242-
-- Query still gets paralleized, but each partition will have more memory to use
242+
-- Query still gets parallelized, but each partition will have more memory to use
243243
SET datafusion.execution.target_partitions = 4;
244244
-- Smaller than the default '8192', while still keep the benefit of vectorized execution
245245
SET datafusion.execution.batch_size = 1024;

0 commit comments

Comments
 (0)