Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion datafusion/common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,8 @@ impl ConfigOptions {
for entry in s.entries() {
let _ = writeln!(
&mut docs,
"| {} | {} | {} |",
"| {}<a class=\"headerlink\" href=\"#{}\" title=\"Link to this config\">#</a> | {} | {} |",
entry.key,
entry.key,
entry.value.as_deref().unwrap_or("NULL"),
entry.description
Expand Down
3 changes: 2 additions & 1 deletion datafusion/execution/src/runtime_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,8 @@ impl RuntimeEnvBuilder {
for entry in &entries {
let _ = writeln!(
&mut docs,
"| {} | {} | {} |",
"| {} <a class=\"headerlink\" href=\"#{}\" title=\"Link to this config\">#</a> | {} | {} |",
entry.key,
entry.key,
entry.value.as_deref().unwrap_or("NULL"),
entry.description
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# -- Project information -----------------------------------------------------

project = "Apache DataFusion"
copyright = "2019-2025, Apache Software Foundation"
copyright = "2019-2026, Apache Software Foundation"
author = "Apache Software Foundation"


Expand Down
Loading