Skip to content

Commit 0bfa36c

Browse files
author
Kusto Build System
committed
Auto-sync from Azure-Kusto-Service
1 parent a5bedab commit 0bfa36c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Kusto.Language.Generators/EngineCommandInfos.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,12 +268,12 @@ private static string PropertyList(string propertyNameRule = null) =>
268268

269269
public static readonly CommandInfo ShowDatabaseIngestionMappings =
270270
new CommandInfo(nameof(ShowDatabaseIngestionMappings),
271-
$"show database [databaseName=<database>] ingestion [MappingKind=(csv | avro | apacheavro | json | parquet | sstream | orc | w3clogfile | azmonstream)] mappings [name=<string>] [{PropertyList()}]",
271+
$"show database [databaseName=<database>] ingestion [MappingKind=(csv | avro | apacheavro | json | parquet | orc | w3clogfile | azmonstream)] mappings [name=<string>] [{PropertyList()}]",
272272
DatabaseIngestionMappingResult);
273273

274274
public static readonly CommandInfo ShowIngestionMappings =
275275
new CommandInfo(nameof(ShowIngestionMappings),
276-
$"show [cluster] ingestion [MappingKind=(csv | avro | apacheavro | json | parquet | sstream | orc | w3clogfile | azmonstream)] mappings [{PropertyList()}]",
276+
$"show [cluster] ingestion [MappingKind=(csv | avro | apacheavro | json | parquet | orc | w3clogfile | azmonstream)] mappings [{PropertyList()}]",
277277
UnknownResult);
278278

279279
public static readonly CommandInfo DropDatabaseIngestionMapping =
@@ -623,7 +623,7 @@ [partition by
623623
[PathSeparator=<string>] }+ ')']
624624
]
625625
[catalog '=' CatalogExpression=<string>]
626-
dataformat '=' DataFormatKind=(avro | apacheavro | csv | json | multijson | orc | parquet | psv | raw | scsv | sohsv | sstream | tsv | tsve | txt | w3clogfile | azmonstream)
626+
dataformat '=' DataFormatKind=(avro | apacheavro | csv | json | multijson | orc | parquet | psv | raw | scsv | sohsv | tsv | tsve | txt | w3clogfile | azmonstream)
627627
'(' { StorageConnectionString=<string>, ',' }+ ')'
628628
[with '(' { PropertyName=<name> '=' Value=<value>, ',' }+ ')'])
629629
|

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
520520
shape79)),
521521
Token("dataformat"),
522522
Token("="),
523-
Token("avro", "apacheavro", "csv", "json", "multijson", "orc", "parquet", "psv", "raw", "scsv", "sohsv", "sstream", "tsv", "tsve", "txt", "w3clogfile", "azmonstream"),
523+
Token("avro", "apacheavro", "csv", "json", "multijson", "orc", "parquet", "psv", "raw", "scsv", "sohsv", "tsv", "tsve", "txt", "w3clogfile", "azmonstream"),
524524
Token("("),
525525
OneOrMoreCommaList(
526526
Custom(
@@ -1402,7 +1402,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
14021402
Token("ingestion"),
14031403
Optional(
14041404
Custom(
1405-
Token("csv", "avro", "apacheavro", "json", "parquet", "sstream", "orc", "w3clogfile", "azmonstream"),
1405+
Token("csv", "avro", "apacheavro", "json", "parquet", "orc", "w3clogfile", "azmonstream"),
14061406
shape19)),
14071407
Token("mappings"),
14081408
Optional(
@@ -1420,7 +1420,7 @@ internal override CommandParserInfo[] CreateCommandParsers(PredefinedRuleParsers
14201420
Token("ingestion"),
14211421
Optional(
14221422
Custom(
1423-
Token("csv", "avro", "apacheavro", "json", "parquet", "sstream", "orc", "w3clogfile", "azmonstream"),
1423+
Token("csv", "avro", "apacheavro", "json", "parquet", "orc", "w3clogfile", "azmonstream"),
14241424
shape19)),
14251425
Token("mappings"),
14261426
Optional(

0 commit comments

Comments
 (0)