-
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.
46932: settings: return valid values when setting an invalid cluster setting r=knz a=asubiotto ``` [email protected]:61456/movr> SET CLUSTER SETTING sql.defaults.vectorize=5; ERROR: invalid integer value '5' for enum setting HINT: Available values: 0: off, 1: auto, 2: on [email protected]:61456/movr> SET CLUSTER SETTING sql.defaults.vectorize='boom'; ERROR: invalid string value 'boom' for enum setting HINT: Available values: 0: off, 1: auto, 2: on ``` Release note (sql change): If setting an invalid cluster setting, the invalid values are now returned. Closes #35477 Co-authored-by: Alfonso Subiotto Marques <[email protected]>
- Loading branch information
Showing
2 changed files
with
20 additions
and
2 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