Skip to content

Commit 66662a3

Browse files
Merge fix/blockviewer-target-type-case-insensitive into dev
2 parents 128ecea + 9165e76 commit 66662a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sp_HumanEvents/sp_HumanEventsBlockViewer.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ BEGIN
12271227
RAISERROR('Inserting to #sp_server_diagnostics_component_result for target type: %s and system health: %s', 0, 1, @target_type, @is_system_health_msg) WITH NOWAIT;
12281228
END;
12291229

1230-
IF @target_type = N'ring_buffer'
1230+
IF LOWER(@target_type) = N'ring_buffer'
12311231
BEGIN
12321232
INSERT
12331233
#sp_server_diagnostics_component_result

0 commit comments

Comments
 (0)