mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-13 19:48:34 -05:00
[Table Designer] support hash index and column store index (#1672)
This commit is contained in:
@@ -14,6 +14,7 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner
|
||||
public const string ForeignKeys = "foreignKeys";
|
||||
public const string CheckConstraints = "checkConstraints";
|
||||
public const string Indexes = "indexes";
|
||||
public const string ColumnStoreIndexes = "columnStoreIndexes";
|
||||
public const string EdgeConstraints = "edgeConstraints";
|
||||
public const string GraphTableType = "graphTableType";
|
||||
public const string IsSystemVersioningEnabled = "isSystemVersioningEnabled";
|
||||
@@ -86,6 +87,8 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner
|
||||
public const string Enabled = "enabled";
|
||||
public const string IsUnique = "isUnique";
|
||||
public const string IsClustered = "isClustered";
|
||||
public const string IsHash = "isHash";
|
||||
public const string BucketCount = "bucketCount";
|
||||
public const string Columns = "columns";
|
||||
public const string IncludedColumns = "includedColumns";
|
||||
public const string FilterPredicate = "filterPredicate";
|
||||
@@ -103,6 +106,21 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner
|
||||
public const string Column = "column";
|
||||
}
|
||||
|
||||
public static class ColumnStoreIndexPropertyNames
|
||||
{
|
||||
public const string Name = "name";
|
||||
public const string Description = "description";
|
||||
public const string IsClustered = "isClustered";
|
||||
public const string Columns = "columns";
|
||||
public const string FilterPredicate = "filterPredicate";
|
||||
public const string ColumnsDisplayValue = "columnsDisplayValue";
|
||||
}
|
||||
|
||||
public static class ColumnStoreIndexColumnSpecificationPropertyNames
|
||||
{
|
||||
public const string Column = "column";
|
||||
}
|
||||
|
||||
public static class EdgeConstraintPropertyNames
|
||||
{
|
||||
public const string Name = "name";
|
||||
|
||||
Reference in New Issue
Block a user