Closed
Description
Part of #12740
Is your feature request related to a problem or challenge?
@Omega359 added the infrastructure to automatically create documentation from code in #12668
For a while this will result in a transition period where we have two copies of most function documentation:
- A "static" one (e.g. https://datafusion.apache.org/user-guide/sql/scalar_functions.html)
- A "auto generated" one (e.g. TODO WHEN MERGED)
Describe the solution you'd like
Once all the documentation for functions has been migrated to the new auto generated pages, we should remove the static pages
Describe alternatives you've considered
Basically this means for the scalar, window and aggregate functions:
- Delete the static file
docs/source/user-guide/sql/scalar_functions.md
- Rename the
_new
files likedocs/source/user-guide/sql/scalar_functions_new.md
todocs/source/user-guide/sql/scalar_functions.md
- Update the index page
docs/source/user-guide/sql/index.rst
to remove the_new
entries - Update the script
dev/update_function_docs.sh
so it writes to the scalar_functions.md file
Additional context
We need to complete porting all documentation first