We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178a84c commit 773ae09Copy full SHA for 773ae09
src/ast/mod.rs
@@ -2376,6 +2376,8 @@ pub enum PeerType {
2376
SQLServer,
2377
Kafka,
2378
Eventhubs,
2379
+ PubSub,
2380
+ Elasticsearch,
2381
}
2382
2383
impl fmt::Display for PeerType {
@@ -2389,6 +2391,8 @@ impl fmt::Display for PeerType {
2389
2391
PeerType::SQLServer => write!(f, "SQLSERVER"),
2390
2392
PeerType::Kafka => write!(f, "KAFKA"),
2393
PeerType::Eventhubs => write!(f, "EVENTHUBS"),
2394
+ PeerType::PubSub => write!(f, "PUBSUB"),
2395
+ PeerType::Elasticsearch => write!(f, "ELASTICSEARCH"),
2396
2397
2398
0 commit comments