I have a piece of SQL.
SELECT *
FROM sys.dm_db_index_physical_stats(
DB_ID(),
OBJECT_ID(N'Sales.SalesOrderDetail'),
(SELECT CAST(index_id AS INT)FROM sys.indexes WHERE name = 'IX_SalesOrderDetail_ProductID'),
DEFAULT,
N'DETAILED'
);
I've enabled the "indent list items" setting. But it seems that `(SELECT CAST(index_id AS INT)FROM sys.indexes WHERE name = 'IX_SalesOrderDetail_ProductID'),` is not considered as an item. See below image. This formatting is a little weird to me. Is it possible to align `(SELECT CAST(index_id AS INT)FROM sys.indexes WHERE name = 'IX_SalesOrderDetail_ProductID'),` with other items (basically make it an item too)?
Thanks.
I've enabled the "indent list items" setting. But it seems that `(SELECT CAST(index_id AS INT)FROM sys.indexes WHERE name = 'IX_SalesOrderDetail_ProductID'),` is not considered as an item. See below image. This formatting is a little weird to me. Is it possible to align `(SELECT CAST(index_id AS INT)FROM sys.indexes WHERE name = 'IX_SalesOrderDetail_ProductID'),` with other items (basically make it an item too)?
Thanks.