@@ -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