File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Kusto.Language.Generators
Kusto.Language/Parser/CodeGen Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2922,17 +2922,17 @@ [partition by
29222922
29232923 public static readonly CommandInfo GraphSnapshotShowStatistics =
29242924 new CommandInfo ( nameof ( GraphSnapshotShowStatistics ) ,
2925- "show graph_snapshot <qualified_wildcarded_name> # statistics" ,
2925+ "show graph_snapshot <qualified_wildcarded_name> statistics" ,
29262926 GraphSnapshotsShowStatisticsResult ) ;
29272927
29282928 public static readonly CommandInfo GraphSnapshotsShowStatistics =
29292929 new CommandInfo ( nameof ( GraphSnapshotsShowStatistics ) ,
2930- "show graph_snapshots <qualified_wildcarded_name> # statistics" ,
2930+ "show graph_snapshots <qualified_wildcarded_name> statistics" ,
29312931 GraphSnapshotsShowStatisticsResult ) ;
29322932
29332933 public static readonly CommandInfo GraphSnapshotShowFailures =
29342934 new CommandInfo ( nameof ( GraphSnapshotShowFailures ) ,
2935- "show graph_snapshots <qualified_wildcarded_name> # failures" ,
2935+ "show graph_snapshots <qualified_wildcarded_name> failures" ,
29362936 GraphSnapshotsShowFailuresResult ) ;
29372937 #endregion
29382938
Original file line number Diff line number Diff line change @@ -6230,23 +6230,23 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
62306230 Token ( "show" , CompletionKind . CommandPrefix ) ,
62316231 Token ( "graph_snapshot" ) ,
62326232 rules . QualifiedWildcardedNameDeclaration ,
6233- Token ( "statistics" ) . Hide ( ) ,
6233+ Token ( "statistics" ) ,
62346234 shape3 ) ) ;
62356235
62366236 var GraphSnapshotsShowStatistics = Command ( "GraphSnapshotsShowStatistics" ,
62376237 Custom (
62386238 Token ( "show" , CompletionKind . CommandPrefix ) ,
62396239 Token ( "graph_snapshots" ) ,
62406240 rules . QualifiedWildcardedNameDeclaration ,
6241- Token ( "statistics" ) . Hide ( ) ,
6241+ Token ( "statistics" ) ,
62426242 shape3 ) ) ;
62436243
62446244 var GraphSnapshotShowFailures = Command ( "GraphSnapshotShowFailures" ,
62456245 Custom (
62466246 Token ( "show" , CompletionKind . CommandPrefix ) ,
62476247 Token ( "graph_snapshots" ) ,
62486248 rules . QualifiedWildcardedNameDeclaration ,
6249- Token ( "failures" ) . Hide ( ) ,
6249+ Token ( "failures" ) ,
62506250 shape3 ) ) ;
62516251
62526252 var ShowCertificates = Command ( "ShowCertificates" ,
You can’t perform that action at this time.
0 commit comments