azuredatastudio icon indicating copy to clipboard operation
azuredatastudio copied to clipboard

Incorrect icon and description for columnstore index in OE

Open erinstellato opened this issue 2 years ago • 0 comments

  • Azure Data Studio Version: 1.48
  • OS Version: Windows 11

Steps to Reproduce:

  1. Within a database, create a columnstore index

create table dbo.test (col1 int, col2 varchar(100)); go create clustered columnstore index CI on dbo.test; go

  1. Within OE, drill into the database, tables, and then the indexes node and expand it. Check the icon:

image

  1. This is the same icon we used for rowstore indexes, and the description says non-unique, clustered. In SSMS we use a different icon for CI (both clustered and non-clustered) indexes, and the description says clustered, columnstore:

image

If we would have the correct icon and description, that would be great.

Does this issue occur when all extensions are disabled?: Yes

erinstellato avatar Mar 25 '24 17:03 erinstellato