File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2374,6 +2374,7 @@ pub enum PeerType {
2374
2374
Postgres ,
2375
2375
S3 ,
2376
2376
SQLServer ,
2377
+ MySql ,
2377
2378
Kafka ,
2378
2379
Eventhubs ,
2379
2380
PubSub ,
@@ -2389,6 +2390,7 @@ impl fmt::Display for PeerType {
2389
2390
PeerType :: Postgres => write ! ( f, "POSTGRES" ) ,
2390
2391
PeerType :: S3 => write ! ( f, "S3" ) ,
2391
2392
PeerType :: SQLServer => write ! ( f, "SQLSERVER" ) ,
2393
+ PeerType :: MySql => write ! ( f, "MYSQL" ) ,
2392
2394
PeerType :: Kafka => write ! ( f, "KAFKA" ) ,
2393
2395
PeerType :: Eventhubs => write ! ( f, "EVENTHUBS" ) ,
2394
2396
PeerType :: PubSub => write ! ( f, "PUBSUB" ) ,
Original file line number Diff line number Diff line change @@ -421,6 +421,7 @@ define_keywords!(
421
421
MSCK ,
422
422
MULTISET ,
423
423
MUTATION ,
424
+ MYSQL ,
424
425
NAME ,
425
426
NANOSECOND ,
426
427
NANOSECONDS ,
Original file line number Diff line number Diff line change @@ -8396,6 +8396,7 @@ impl<'a> Parser<'a> {
8396
8396
Keyword :: KAFKA ,
8397
8397
Keyword :: S3 ,
8398
8398
Keyword :: SQLSERVER ,
8399
+ Keyword :: MYSQL ,
8399
8400
Keyword :: EVENTHUBS ,
8400
8401
Keyword :: PUBSUB ,
8401
8402
Keyword :: ELASTICSEARCH ,
@@ -8407,6 +8408,7 @@ impl<'a> Parser<'a> {
8407
8408
Some ( Keyword :: KAFKA ) => Ok ( PeerType :: Kafka ) ,
8408
8409
Some ( Keyword :: S3 ) => Ok ( PeerType :: S3 ) ,
8409
8410
Some ( Keyword :: SQLSERVER ) => Ok ( PeerType :: SQLServer ) ,
8411
+ Some ( Keyword :: MYSQL ) => Ok ( PeerType :: MySql ) ,
8410
8412
Some ( Keyword :: EVENTHUBS ) => Ok ( PeerType :: Eventhubs ) ,
8411
8413
Some ( Keyword :: PUBSUB ) => Ok ( PeerType :: PubSub ) ,
8412
8414
Some ( Keyword :: ELASTICSEARCH ) => Ok ( PeerType :: Elasticsearch ) ,
@@ -8419,6 +8421,7 @@ impl<'a> Parser<'a> {
8419
8421
"KAFKA" ,
8420
8422
"S3" ,
8421
8423
"SQLSERVER" ,
8424
+ "MYSQL" ,
8422
8425
"EVENTHUBS" ,
8423
8426
"PUBSUB" ,
8424
8427
"ELASTICSEARCH" ,
You can’t perform that action at this time.
0 commit comments