chore(sql): Update SQL reference with additional functions#6359
Merged
chore(sql): Update SQL reference with additional functions#6359
Conversation
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR updates the SQL function reference documentation with additional functions and improvements to existing content. The updates include adding new array, map, and struct functions, introducing previously missing conditional functions, and standardizing heading levels throughout the documentation.
- Adds comprehensive documentation for array functions including manipulation, searching, and conversion operations
- Introduces map functions for creating and operating on Arrow maps
- Adds struct functions for working with Arrow structs
- Updates conditional functions to include
greatestandleastfunctions
Reviewed Changes
Copilot reviewed 92 out of 92 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| content/shared/sql-reference/functions/array.md | New comprehensive array function documentation with 96 functions |
| content/shared/sql-reference/functions/map.md | New map function documentation covering creation and operations |
| content/shared/sql-reference/functions/struct.md | New struct function documentation for creating Arrow structs |
| content/shared/sql-reference/functions/conditional.md | Updated to include previously commented greatest and least functions |
| content/shared/sql-reference/functions/misc.md | Added get_field function documentation |
| Various function pages | Standardized heading levels from ##### to ### for Arguments sections |
| Various product pages | Created new navigation entries for array, map, and struct functions |
jstirnaman
reviewed
Sep 4, 2025
Contributor
jstirnaman
left a comment
There was a problem hiding this comment.
- Fixes some confusing/imprecise grammar
- Fixes some grammar typos
- Fixes what seems to be
struct()example using aliases mismatched to results that don't include aliases.
jstirnaman
requested changes
Sep 4, 2025
Contributor
jstirnaman
left a comment
There was a problem hiding this comment.
Hit the wrong button. See my previous comment.
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
jstirnaman
approved these changes
Sep 5, 2025
jstirnaman
added a commit
that referenced
this pull request
Sep 11, 2025
* feat(sql): WIP added struct and map functions * chore(sql): update sql reference with new functions * chore(sql): migrate sql reference function updates to other projects * chore(sql): readd deleted cache functions pages * Update content/shared/sql-reference/functions/array.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix(sql): fixed broken anchor links * fix(sql): fixed typos * Apply suggestions from code review Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes https://github.com/influxdata/DAR/issues/476
Updates SQL function reference docs with map, array, and struct functions as well as a few other additions.