Skip to content

Commit c6ef8bb

Browse files
BrentOzarclaude
andcommitted
sp_Blitz: fix trailing comma and typo from code review
- Remove trailing comma in CREATE TABLE #DatabaseScopedConfigurationDefaults and reformat to multi-line for clarity - Fix typo: Nmumeric_RoundAbort -> Numeric_RoundAbort in comment Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 90d10a4 commit c6ef8bb

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

sp_Blitz.sql

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -956,7 +956,14 @@ BEGIN
956956

957957
DROP TABLE IF EXISTS #DatabaseScopedConfigurationDefaults;
958958
CREATE TABLE #DatabaseScopedConfigurationDefaults
959-
(ID INT IDENTITY(1,1), configuration_id INT, [name] NVARCHAR(60), default_value sql_variant, default_value_for_secondary sql_variant, CheckID INT, );
959+
(
960+
ID INT IDENTITY(1,1),
961+
configuration_id INT,
962+
[name] NVARCHAR(60),
963+
default_value sql_variant,
964+
default_value_for_secondary sql_variant,
965+
CheckID INT
966+
);
960967

961968
DROP TABLE IF EXISTS #DBCCs;
962969
CREATE TABLE #DBCCs
@@ -10529,7 +10536,7 @@ IF NOT EXISTS ( SELECT 1
1052910536
DROP TABLE IF EXISTS #AlertInfo;
1053010537

1053110538
/*
10532-
Reset the Nmumeric_RoundAbort session state back to enabled if it was disabled earlier.
10539+
Reset the Numeric_RoundAbort session state back to enabled if it was disabled earlier.
1053310540
See Github issue #2302 for more info.
1053410541
*/
1053510542
IF @NeedToTurnNumericRoundabortBackOn = 1

0 commit comments

Comments
 (0)