Skip to content

Commit 7767f27

Browse files
author
Kusto Build System
committed
Auto-sync from Azure-Kusto-Service
1 parent b8fa018 commit 7767f27

3 files changed

Lines changed: 201 additions & 116 deletions

File tree

src/Kusto.Language.Generators/EngineCommandInfos.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -902,6 +902,28 @@ [partition by
902902
PolicyResult);
903903
#endregion
904904

905+
#region RowId
906+
public static readonly CommandInfo ShowTablePolicyRowId =
907+
new CommandInfo(nameof(ShowTablePolicyRowId),
908+
"show table TableName=<database_table> policy rowid",
909+
PolicyResult);
910+
911+
public static readonly CommandInfo AlterTablePolicyRowId =
912+
new CommandInfo(nameof(AlterTablePolicyRowId),
913+
"alter table TableName=<database_table> policy rowid (true | false)",
914+
PolicyResult);
915+
916+
public static readonly CommandInfo AlterTablesPolicyRowId =
917+
new CommandInfo(nameof(AlterTablesPolicyRowId),
918+
"alter tables '(' { TableName=<table>, ',' }+ ')' policy rowid (true | false)",
919+
PolicyResult);
920+
921+
public static readonly CommandInfo DeleteTablePolicyRowId =
922+
new CommandInfo(nameof(DeleteTablePolicyRowId),
923+
"delete table TableName=<database_table> policy rowid",
924+
PolicyResult);
925+
#endregion
926+
905927
#region Retention
906928
public static readonly CommandInfo ShowTablePolicyRetention =
907929
new CommandInfo(nameof(ShowTablePolicyRetention),

0 commit comments

Comments
 (0)