-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sql: rename NullableArgs to CalledOnNullInput
Previously, the `Overload.NullableArgs` boolean indicated whether or not a function was evaluated in the presence of `NULL` inputs. This name was confusing because it did not describe the behavior of the function. Arguments to all functions can be `NULL` (i.e., "nullable") so the difference between `NullableArgs` being `true` and `false` was unclear without reading the detailed description of the field. This commit renames the field, and all related variables throughout the codebase, to `CalledOnNullInput`, making it clear that `true` indicates that the function is called if any inputs are `NULL`, and `false` indicates that the function is not called if any inputs are `NULL`. This name also maps more closely to SQL syntax such as `CREATE FUNCTION ... CALLED ON NULL INPUT ...`. Release note: None
- Loading branch information
Showing
38 changed files
with
2,535 additions
and
2,513 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.