-
Notifications
You must be signed in to change notification settings - Fork 389
Functions: start generating dictionary functions #4596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -249,6 +249,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then | |
"Conditional" | ||
"Distance" | ||
"Dates and Times" | ||
"Dictionary" | ||
"Encoding" | ||
"Financial" | ||
"Null" | ||
|
@@ -364,6 +365,7 @@ insert_src_files=( | |
"conditional-functions.md" | ||
"distance-functions.md" | ||
"dates_and_times-functions.md" | ||
"dictionary-functions.md" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [nitpick] The source filename 'dictionary-functions.md' follows the pattern of other entries but is inserted between 'dates_and_times-functions.md' and 'encoding-functions.md'. For consistency and maintainability, consider ordering this list alphabetically or according to the same sequence used in the function categories list. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
"encoding-functions.md" | ||
"financial-functions.md" | ||
"null-functions.md" | ||
|
@@ -395,6 +397,7 @@ insert_dest_files=( | |
"docs/sql-reference/functions/conditional-functions.md" | ||
"docs/sql-reference/functions/distance-functions.md" | ||
"docs/sql-reference/functions/date-time-functions.md" | ||
"docs/sql-reference/functions/ext-dict-functions.md" | ||
"docs/sql-reference/functions/encoding-functions.md" | ||
"docs/sql-reference/functions/financial-functions.md" | ||
"docs/sql-reference/functions/functions-for-nulls.md" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The 'Dictionary' entry is inserted between 'Dates and Times' and 'Encoding', breaking alphabetical ordering. Consider maintaining alphabetical order by placing it after 'Distance' or reorganizing the entire list alphabetically for better maintainability.
Copilot uses AI. Check for mistakes.