You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/configuration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ Formatting settings for the `sqlmesh format` command and UI.
114
114
|`normalize`| Whether to normalize SQL (Default: False) | boolean | N |
115
115
|`pad`| The number of spaces to use for padding (Default: 2) | int | N |
116
116
|`indent`| The number of spaces to use for indentation (Default: 2) | int | N |
117
-
|`normalize_functions`|Whether to normalize function names. Supported values are: 'upper' and 'lower' (Default: None) | string | N |
117
+
|`normalize_functions`|How to normalize function name casing. `false` (default) preserves the casing of custom and audit function names as written; `"upper"` uppercases all function names; `"lower"` lowercases all function names; `true` defers to SQLGlot's generator default and uppercases all function names including custom ones; `null` (or omitting the key) is excluded during serialization and therefore takes the same `false` default path — it does **not** defer to SQLGlot's generator default. Note: SQLGlot built-in function names may still be canonicalized by the parser regardless of this setting. | string \| boolean \| null| N |
118
118
|`leading_comma`| Whether to use leading commas (Default: False) | boolean | N |
119
119
|`max_text_width`| The maximum text width in a segment before creating new lines (Default: 80) | int | N |
120
120
|`append_newline`| Whether to append a newline to the end of the file (Default: False) | boolean | N |
0 commit comments