Skip to content

Commit a121c72

Browse files
author
Kusto Build System
committed
Auto-sync from Azure-Kusto-Service
1 parent f080e02 commit a121c72

3 files changed

Lines changed: 18 additions & 0 deletions

File tree

src/Kusto.Language.Generators/EngineCommandInfos.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3021,6 +3021,11 @@ [partition by
30213021
$"execute cluster script [{PropertyList("ContinueOnErrors|ThrowOnErrors")}] '<|' <input_script>",
30223022
UnknownResult);
30233023

3024+
public static readonly CommandInfo CreateRequestMemoryProfile =
3025+
new CommandInfo(nameof(CreateRequestMemoryProfile),
3026+
$"create request_memoryprofile [{PropertyList()}]",
3027+
UnknownResult);
3028+
30243029
public static readonly CommandInfo CreateRequestSupport =
30253030
new CommandInfo(nameof(CreateRequestSupport),
30263031
$"create request_support [{PropertyList()}]",

src/Kusto.Language/Parser/CodeGen/EngineCommandGrammar.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6341,6 +6341,14 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
63416341
rules.ScriptInput,
63426342
new [] {CD(), CD(), CD(), CD(isOptional: true), CD(), CD(CompletionHint.NonScalar)}));
63436343

6344+
var CreateRequestMemoryProfile = Command("CreateRequestMemoryProfile",
6345+
Custom(
6346+
Token("create", CompletionKind.CommandPrefix),
6347+
Token("request_memoryprofile"),
6348+
Optional(
6349+
fragment0),
6350+
shape25));
6351+
63446352
var CreateRequestSupport = Command("CreateRequestSupport",
63456353
Custom(
63466354
Token("create", CompletionKind.CommandPrefix),
@@ -8297,6 +8305,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
82978305
new CommandParserInfo("ShowWhatsGoingOn", ShowWhatsGoingOn),
82988306
new CommandParserInfo("ExecuteDatabaseScript", ExecuteDatabaseScript),
82998307
new CommandParserInfo("ExecuteClusterScript", ExecuteClusterScript),
8308+
new CommandParserInfo("CreateRequestMemoryProfile", CreateRequestMemoryProfile),
83008309
new CommandParserInfo("CreateRequestSupport", CreateRequestSupport),
83018310
new CommandParserInfo("ShowRequestSupport", ShowRequestSupport),
83028311
new CommandParserInfo("ShowClusterAdminState", ShowClusterAdminState),

src/Kusto.Language/Parser/CodeGen/EngineCommands.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,6 +1602,9 @@ public static class EngineCommands
16021602
public static readonly CommandSymbol ExecuteClusterScript =
16031603
new CommandSymbol("ExecuteClusterScript", _schema19);
16041604

1605+
public static readonly CommandSymbol CreateRequestMemoryProfile =
1606+
new CommandSymbol("CreateRequestMemoryProfile", _schema19);
1607+
16051608
public static readonly CommandSymbol CreateRequestSupport =
16061609
new CommandSymbol("CreateRequestSupport", _schema19);
16071610

@@ -2463,6 +2466,7 @@ public static class EngineCommands
24632466
ShowWhatsGoingOn,
24642467
ExecuteDatabaseScript,
24652468
ExecuteClusterScript,
2469+
CreateRequestMemoryProfile,
24662470
CreateRequestSupport,
24672471
ShowRequestSupport,
24682472
ShowClusterAdminState,

0 commit comments

Comments
 (0)