Skip to content

Commit 20167ff

Browse files
committed
add batch_expr_strict_mode
1 parent 578650a commit 20167ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

operate/view-configure-runtime-parameters.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ For example, you may see a table similar to this:
1919
```bsh Runtime Parameters
2020
Name | Setting | Description
2121
--------------------------------+-----------------+--------------------------------------
22-
implicit_flush | false | If set to `true`, then every INSERT/UPDATE/DELETE statement will block until the entire dataflow is refreshed.
22+
implicit_flush | false | If set to `true`, then every INSERT/UPDATE/DELETE statement will block until the entire dataflow is refreshed.
2323
create_compaction_group_for_mv | false | If set to `true`, dedicated compaction groups will be created in MV creation.
2424
query_mode | auto | A temporary config variable to force query running in either local or distributed mode. If the value is auto, the system will decide for you automatically.
2525
...
@@ -38,6 +38,7 @@ Below is the detailed information about the parameters you may see after using t
3838
| batch\_enable\_lookup\_join | true/false | Force the use of lookup join instead of hash join when possible for local batch execution. |
3939
| batch\_enable\_sort\_agg | true/false | Enable usage of sortAgg instead of hash agg when order property is satisfied in batch execution. |
4040
| batch\_enable\_distributed\_dml | true/false | Enable distributed DML, allowing INSERT/UPDATE/DELETE statements to be executed in a distributed way, such as running on multiple compute nodes. Defaults to false. |
41+
| batch\_expr\_strict\_mode | true/false | Control whether to let the entire query fail or fill `NULL` values for expression evaluation failures. |
4142
| max\_split\_range\_gap | 8 | The max gap allowed to transform small range scan into multi point lookup. |
4243
| search\_path | "$user", public | Set the order in which schemas are searched when an object (table, data type, function, etc.) is referenced by a simple name with no schema specified. See [here](https://www.postgresql.org/docs/14/runtime-config-client.html#GUC-SEARCH-PATH) for details. |
4344
| visibility\_mode | default | If `VISIBILITY_MODE` is `all`, we will support querying the latest uncommitted data, and consistency is not guaranteed between the tables. |

0 commit comments

Comments
 (0)