Skip to content

Commit 1e8a64b

Browse files
authored
Merge pull request #418 from VladDBA/dev
fix for #417
2 parents c0b568a + ed214ab commit 1e8a64b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

PSBlitz.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ param(
302302

303303
###Internal params
304304
#Version
305-
$Vers = "5.10.1"
306-
$VersDate = "2025-12-04"
305+
$Vers = "5.10.2"
306+
$VersDate = "2025-12-05"
307307
$TwoMonthsFromRelease = [datetime]::ParseExact("$VersDate", 'yyyy-MM-dd', $null).AddMonths(2)
308308
$NowDate = Get-Date
309309
#Get script path

Resources/spBlitzIndex_NonSPLatest.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ IF OBJECT_ID('tempdb..#dm_db_index_operational_stats') IS NOT NULL
455455
is_spatial BIT NOT NULL,
456456
is_NC_columnstore BIT NOT NULL,
457457
is_CX_columnstore BIT NOT NULL,
458-
is_JSON BIT NOT NULL,
458+
is_json BIT NOT NULL,
459459
is_in_memory_oltp BIT NOT NULL ,
460460
is_disabled BIT NOT NULL ,
461461
is_hypothetical BIT NOT NULL ,
@@ -1542,7 +1542,7 @@ BEGIN TRY
15421542
CASE when si.type = 4 THEN 1 ELSE 0 END AS is_spatial,
15431543
CASE when si.type = 6 THEN 1 ELSE 0 END AS is_NC_columnstore,
15441544
CASE when si.type = 5 then 1 else 0 end as is_CX_columnstore,
1545-
CASE when si.type = 9 then 1 else 0 end as is_JSON,
1545+
CASE when si.type = 9 then 1 else 0 end as is_json,
15461546
CASE when si.data_space_id = 0 then 1 else 0 end as is_in_memory_oltp,
15471547
si.is_disabled,
15481548
si.is_hypothetical,
@@ -1605,7 +1605,7 @@ BEGIN TRY
16051605
PRINT SUBSTRING(@dsql, 36000, 40000);
16061606
END;
16071607
INSERT #IndexSanity ( [database_id], [object_id], [index_id], [index_type], [database_name], [schema_name], [object_name],
1608-
index_name, is_indexed_view, is_unique, is_primary_key, is_unique_constraint, is_XML, is_spatial, is_NC_columnstore, is_CX_columnstore, is_JSON, is_in_memory_oltp,
1608+
index_name, is_indexed_view, is_unique, is_primary_key, is_unique_constraint, is_XML, is_spatial, is_NC_columnstore, is_CX_columnstore, is_json, is_in_memory_oltp,
16091609
is_disabled, is_hypothetical, is_padded, fill_factor, filter_definition, [optimize_for_sequential_key], user_seeks, user_scans,
16101610
user_lookups, user_updates, last_user_seek, last_user_scan, last_user_lookup, last_user_update,
16111611
create_date, modify_date )

0 commit comments

Comments
 (0)