mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-17 17:23:48 -05:00
[Table Designer] Fix columnstore wording
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
namespace Microsoft.SqlTools.ServiceLayer.TableDesigner.Contracts
|
||||
{
|
||||
/// <summary>
|
||||
/// The view model of column store index.
|
||||
/// The view model of columnstore index.
|
||||
/// </summary>
|
||||
public class ColumnStoreIndexViewModel : ObjectViewModelBase
|
||||
{
|
||||
|
||||
@@ -1060,7 +1060,7 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner
|
||||
indexVM.Columns.CanAddRows = !index.IsClustered;
|
||||
indexVM.ColumnsDisplayValue.Enabled = false;
|
||||
|
||||
// avoid populating columns for CLUSTERED column store index
|
||||
// avoid populating columns for CLUSTERED columnstore index
|
||||
if (!index.IsClustered)
|
||||
{
|
||||
indexVM.ColumnsDisplayValue.Value = index.ColumnsDisplayValue;
|
||||
@@ -1432,6 +1432,7 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner
|
||||
var columnStoreIndexesTableProperties = new TableComponentProperties<ColumnStoreIndexViewModel>()
|
||||
{
|
||||
Title = SR.TableDesignerColumnStoreIndexesTableTitle,
|
||||
AriaLabel = SR.TableDesignerColumnStoreIndexesTableTitle,
|
||||
ObjectTypeDisplayName = SR.TableDesignerColumnStoreIndexObjectType,
|
||||
LabelForAddNewButton = SR.AddNewColumnStoreIndexLabel
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user