mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-30 01:25:45 -05:00
[Table Designer] Support filter predicate and included columns for index (#1619)
This commit is contained in:
@@ -2286,6 +2286,12 @@ IndexIsUniquePropertyDescription = Whether the data entered into this index must
|
||||
TableDesignerIsUniquePropertyTitle = Is Unique
|
||||
IndexColumnIsAscendingPropertyDescription = Specifies the sort order of the column.
|
||||
IndexColumnIsAscendingPropertyTitle = Is Ascending
|
||||
IndexIncludedColumnsGroupTitle = Included Columns
|
||||
IndexIncludedColumnsPropertyDescription = The included columns of the index
|
||||
IndexIncludedColumnsAddColumn = Add Column
|
||||
IndexIncludedColumnsColumnPropertyName = Column
|
||||
IndexFilterPredicatePropertyDescription = Filter predicate of the index
|
||||
IndexFilterPredicatePropertyTitle = Filter Predicate
|
||||
TableDesignerColumnsDisplayValueTitle = Columns
|
||||
TableDesignerDeleteColumnConfirmationMessage = Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?
|
||||
TableDesignerGraphTableGroupTitle = Graph Table
|
||||
@@ -2365,4 +2371,8 @@ MemoryOptimizedTableIdentityColumnRuleDescription = The use of seed and incremen
|
||||
TableShouldAvoidHavingMultipleEdgeConstraintsRuleDescription = The table has more than one edge constraint on it. This is only useful as a temporary state when modifying existing edge constraints, and should not be used in other cases.
|
||||
ColumnCannotBeListedMoreThanOnceInPrimaryKeyRuleDescription(string columnName) = Cannot use duplicate column names in primary key, column name: {0}
|
||||
MemoryOptimizedCannotBeEnabledWhenNotSupportedRuleDescription = Memory-optimized table is not supported for this database.
|
||||
MutipleCreateTableStatementsInScriptRuleDescription = There are multiple table definitions in the script, only the first table can be edited in the designer.
|
||||
MutipleCreateTableStatementsInScriptRuleDescription = There are multiple table definitions in the script, only the first table can be edited in the designer.
|
||||
ClusteredIndexCannotHaveIncludedColumnsRuleDescription = Included columns are not supported for a clustered index.
|
||||
ClusteredIndexCannotHaveFilterPredicateRuleDescription = Filter predicate is not supported for a clustered index.
|
||||
ColumnCanOnlyAppearOnceInIndexIncludedColumnsRuleDescription(string columnName, string indexName, int rowNumber) = Column with name '{0}' has already been included to the index '{1}'. Row number: {2}.
|
||||
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}.
|
||||
Reference in New Issue
Block a user