You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datafusion/sqllogictest/test_files/information_schema.slt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -375,7 +375,7 @@ datafusion.execution.split_file_groups_by_statistics false Attempt to eliminate
375
375
datafusion.execution.target_partitions 7 Number of partitions for query execution. Increasing partitions can increase concurrency. Defaults to the number of CPU cores on the system
376
376
datafusion.execution.time_zone +00:00 The default time zone Some functions, e.g. `EXTRACT(HOUR from SOME_TIME)`, shift the underlying datetime according to this time zone, and then extract the hour
377
377
datafusion.execution.use_row_number_estimates_to_optimize_partitioning false Should DataFusion use row number estimates at the input to decide whether increasing parallelism is beneficial or not. By default, only exact row numbers (not estimates) are used for this decision. Setting this flag to `true` will likely produce better plans. if the source of statistics is accurate. We plan to make this the default in the future.
378
-
datafusion.explain.format indent Display format of explain. Default is "indent". When set to "tree", it will print the plan in a tree-rendered format. No need to normalize because ExplainFormat is case-insensitive
378
+
datafusion.explain.format indent Display format of explain. Default is "indent". When set to "tree", it will print the plan in a tree-rendered format.
379
379
datafusion.explain.logical_plan_only false When set to true, the explain statement will only print logical plans
380
380
datafusion.explain.physical_plan_only false When set to true, the explain statement will only print physical plans
381
381
datafusion.explain.show_schema false When set to true, the explain statement will print schema information
@@ -386,7 +386,7 @@ datafusion.format.datetime_format NULL Format for DateTime arrays
386
386
datafusion.format.duration_format pretty Duration format. Can be either Pretty or ISO8601
387
387
datafusion.format.null (empty) Format string for nulls
388
388
datafusion.format.safe true If set to `true` any formatting errors will be written to the output instead of being converted into a [`std::fmt::Error`]
389
-
datafusion.format.time_format NULL Time format for time arrcays
389
+
datafusion.format.time_format NULL Time format for time arrays
390
390
datafusion.format.timestamp_format NULL Timestamp format for timestamp arrays
391
391
datafusion.format.timestamp_tz_format NULL Timestamp format for timestamp with timezone arrays
392
392
datafusion.format.types_info false Show types in visual representation batches
Copy file name to clipboardExpand all lines: docs/source/user-guide/configs.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -132,3 +132,12 @@ Environment variables are read during `SessionConfig` initialisation so they mus
132
132
| datafusion.sql_parser.map_varchar_to_utf8view | false | If true, `VARCHAR` is mapped to `Utf8View` during SQL planning. If false, `VARCHAR` is mapped to `Utf8` during SQL planning. Default is false. |
133
133
| datafusion.sql_parser.collect_spans | false | When set to true, the source locations relative to the original SQL query (i.e. [`Span`](https://docs.rs/sqlparser/latest/sqlparser/tokenizer/struct.Span.html)) will be collected and recorded in the logical plan nodes. |
134
134
| datafusion.sql_parser.recursion_limit | 50 | Specifies the recursion depth limit when parsing complex SQL Queries |
135
+
| datafusion.format.safe | true | If set to `true` any formatting errors will be written to the output instead of being converted into a [`std::fmt::Error`]|
136
+
| datafusion.format.null || Format string for nulls |
137
+
| datafusion.format.date_format | NULL | Date format for date arrays |
138
+
| datafusion.format.datetime_format | NULL | Format for DateTime arrays |
139
+
| datafusion.format.timestamp_format | NULL | Timestamp format for timestamp arrays |
140
+
| datafusion.format.timestamp_tz_format | NULL | Timestamp format for timestamp with timezone arrays |
141
+
| datafusion.format.time_format | NULL | Time format for time arrays |
142
+
| datafusion.format.duration_format | pretty | Duration format. Can be either Pretty or ISO8601 |
143
+
| datafusion.format.types_info | false | Show types in visual representation batches |
0 commit comments