-
Notifications
You must be signed in to change notification settings - Fork 389
Functions: start generating string replacement functions #4583
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 |
---|---|---|
|
@@ -277,6 +277,7 @@ if [ -f "$FUNCTION_SQL_FILE" ]; then | |
"Time Series" | ||
"Other" | ||
"Time Window" | ||
"String Replacement" | ||
"Tuple" | ||
) | ||
|
||
|
@@ -399,6 +400,7 @@ insert_src_files=( | |
"time_series-functions.md" | ||
"other-functions.md" | ||
"time_window-functions.md" | ||
"string_replacement-functions.md" | ||
"tuple-functions.md" | ||
) | ||
|
||
|
@@ -429,6 +431,7 @@ insert_dest_files=( | |
"docs/sql-reference/functions/time-series-functions.md" | ||
"docs/sql-reference/functions/other-functions.md" | ||
"docs/sql-reference/functions/time-window-functions.md" | ||
"docs/sql-reference/functions/string-replace-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. Inconsistent naming between source (string_replacement) and destination (string-replace) plus mismatch between 'replacement' vs 'replace'. This likely breaks the expected index-based mapping or results in a missing destination file. Recommend standardizing to either 'string_replacement-functions.md' / 'string-replacement-functions.md' (matching existing pattern of underscore in source, hyphen in dest while keeping the same stem) or 'string_replace-functions.md' / 'string-replace-functions.md', but keep the stem identical in both arrays. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
"docs/sql-reference/functions/tuple-functions.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.
Inconsistent naming between source (string_replacement) and destination (string-replace) plus mismatch between 'replacement' vs 'replace'. This likely breaks the expected index-based mapping or results in a missing destination file. Recommend standardizing to either 'string_replacement-functions.md' / 'string-replacement-functions.md' (matching existing pattern of underscore in source, hyphen in dest while keeping the same stem) or 'string_replace-functions.md' / 'string-replace-functions.md', but keep the stem identical in both arrays.
Copilot uses AI. Check for mistakes.