Skip to content

Commit b076ccc

Browse files
committed
Added MONEY and SMALLMONEY types to partition range formatting
1 parent 294b7c6 commit b076ccc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sp_BlitzIndex.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ALTER PROCEDURE dbo.sp_BlitzIndex
3434
@OutputTableName NVARCHAR(256) = NULL ,
3535
@IncludeInactiveIndexes BIT = 0 /* Will skip indexes with no reads or writes */,
3636
@ShowAllMissingIndexRequests BIT = 0 /*Will make all missing index requests show up*/,
37-
@ShowPartitionRanges BIT = 1 /* Will add partition range values column to columnstore visualization */,
37+
@ShowPartitionRanges BIT = 0 /* Will add partition range values column to columnstore visualization */,
3838
@SortOrder NVARCHAR(50) = NULL, /* Only affects @Mode = 2. */
3939
@SortDirection NVARCHAR(4) = 'DESC', /* Only affects @Mode = 2. */
4040
@Help TINYINT = 0,
@@ -2795,6 +2795,7 @@ BEGIN
27952795
CASE
27962796
WHEN pp.system_type_id IN (40, 41, 42, 43, 58, 61) THEN 126
27972797
WHEN pp.system_type_id IN (59, 62) THEN 3
2798+
WHEN pp.system_type_id IN (60, 122) THEN 2
27982799
ELSE NULL END format_type,
27992800
CASE WHEN pf.boundary_value_on_right = 0 THEN ''>'' ELSE ''>='' END range_start_op,
28002801
prvs.value range_start_value,

0 commit comments

Comments
 (0)