mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-08 01:28:29 -05:00
[Table Designer] support hash index and column store index (#1672)
This commit is contained in:
@@ -2296,7 +2296,24 @@ IndexIncludedColumnsAddColumn = Add Column
|
||||
IndexIncludedColumnsColumnPropertyName = Column
|
||||
IndexFilterPredicatePropertyDescription = Filter predicate of the index
|
||||
IndexFilterPredicatePropertyTitle = Filter Predicate
|
||||
IndexIsHashPropertyDescription = Whether the index is a hash index
|
||||
IndexIsHashPropertyTitle = Is Hash
|
||||
IndexBucketCountPropertyDescription = Bucket count of the hash index, note the value will always automatically round up to the next power of 2.
|
||||
IndexBucketCountPropertyTitle = Bucket Count
|
||||
HashIndexGroupTitle = Hash Index
|
||||
TableDesignerColumnsDisplayValueTitle = Columns
|
||||
ColumnStoreIndexNamePropertyTitle = Name
|
||||
ColumnStoreIndexNamePropertyDescription = Name of the column store index
|
||||
ColumnStoreIndexDescriptionPropertyTitle = Description
|
||||
ColumnStoreIndexDescriptionPropertyDescription = Description of the column store index
|
||||
ColumnStoreIndexIsClusteredPropertyDescription = Whether the column store index is clustered.
|
||||
ColumnStoreIndexIsClusteredPropertyTitle = Is Clustered
|
||||
ColumnStoreIndexFilterPredicatePropertyDescription = Filter predicate of the column store index
|
||||
ColumnStoreIndexFilterPredicatePropertyTitle = Filter Predicate
|
||||
ColumnStoreIndexColumnsPropertyDescription = Columns in this column store index
|
||||
ColumnStoreIndexColumnsGroupTitle = Columns
|
||||
ColumnStoreIndexAddColumn = Add Column
|
||||
ColumnStoreIndexColumnPropertyName = Column
|
||||
TableDesignerDeleteColumnConfirmationMessage = Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?
|
||||
TableDesignerGraphTableGroupTitle = Graph Table
|
||||
TableDesignerGraphTableTypeTitle = Type
|
||||
@@ -2304,6 +2321,9 @@ TableDesignerGraphTableTypeDescription = Specifies the table type.
|
||||
TableDesignerGraphTableTypeEdge = Edge
|
||||
TableDesignerGraphTableTypeNode = Node
|
||||
TableDesignerGraphTableTypeNone = None
|
||||
TableDesignerColumnStoreIndexesTableTitle = Column Store Indexes
|
||||
TableDesignerColumnStoreIndexObjectType = Column Store Index
|
||||
AddNewColumnStoreIndexLabel = New Column Store Index
|
||||
TableDesignerEdgeConstraintsTabTitle = Edge Constraints
|
||||
TableDesignerEdgeConstraintObjectType = Edge Constraint
|
||||
TableDesignerEdgeConstraintNamePropertyDescription = Name of the constraint.
|
||||
@@ -2382,6 +2402,10 @@ ColumnCanOnlyAppearOnceInIndexIncludedColumnsRuleDescription(string columnName,
|
||||
ColumnCannotDuplicateWitIndexKeyColumnsRuleDescription(string columnName, string indexName, int rowNumber) = Included column with name '{0}' has already been part of the index '{1}' and it cannot be included. Row number: {2}.
|
||||
ComputedColumnNeedToBePersistedAndNotNullInPrimaryKeyRuleDescription(string columnName) = The computed column with name '{0}' has to be persisted and not nullable to be part of a primary key.
|
||||
ComputedColumnNeedToBePersistedInForeignKeyRuleDescription(string columnName, string foreignKeyName) = The computed column with name '{0}' has to be persisted to be part of the foreign key '{1}'.
|
||||
HashIndexNotSupportedInNonMemoryOptimizedTableRuleDescription(string indexName) = Hash index with name '{0}' is not supported on a non memory-optimized table.
|
||||
HashIndexMustHaveBucketCountRuleDescription(string indexName) = Hash index '{0}' does not have a bucket count.
|
||||
ColumnCanOnlyAppearOnceInNonClusteredColumnStoreIndexRuleDescription(string columnName, string indexName, int rowNumber) = Column with name '{0}' has already been added to the non-clustered column store index '{1}'. Row number: {2}.
|
||||
NonClusteredColumnStoreIndexMustHaveColumnsRuleDescription(string indexName) = Non-clustered column store index '{0}' does not have any columns associated with it.
|
||||
TableDesignerConfirmationText = I have read the summary and understand the potential risks.
|
||||
|
||||
############################################################################
|
||||
|
||||
Reference in New Issue
Block a user