We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 951dcd0 commit d375fc1Copy full SHA for d375fc1
tests/sqlparser_postgres.rs
@@ -3416,9 +3416,8 @@ fn parse_create_single_mirror_no_options() {
3416
3417
#[test]
3418
fn parse_create_eventhubs_peer() {
3419
- match pg()
3420
- .verified_stmt(
3421
- r#"CREATE PEER eventhubs_1 FROM EVENTHUBS WITH (eventhubs = '[
+ match pg().verified_stmt(
+ r#"CREATE PEER eventhubs_1 FROM EVENTHUBS WITH (eventhubs = '[
3422
{
3423
"subscription_id":"mysubscriptionid1",
3424
"resource_group":"my-resource-1",
@@ -3435,9 +3434,8 @@ fn parse_create_eventhubs_peer() {
3435
3434
"partition_count":5,
3436
"message_retention_in_days":2
3437
}
3438
- ]')"#
3439
- )
3440
- {
+ ]')"#,
+ ) {
3441
Statement::CreatePeer {
3442
if_not_exists: _,
3443
peer_name: _,
0 commit comments