squawk-parser 0.2.3

Postgres SQL parser used in squawk
Documentation
---
source: parser/src/parse.rs
expression: res
---
Ok(
    [
        RawStmt(
            RawStmt {
                stmt: CreateSubscriptionStmt(
                    Object({
                        "conninfo": String(
                            "host=192.168.1.50 port=5432 user=foo dbname=foodb",
                        ),
                        "publication": Array([
                            Object({
                                "String": Object({
                                    "str": String(
                                        "mypublication",
                                    ),
                                }),
                            }),
                            Object({
                                "String": Object({
                                    "str": String(
                                        "insert_only",
                                    ),
                                }),
                            }),
                        ]),
                        "subname": String(
                            "mysub",
                        ),
                    }),
                ),
                stmt_location: 0,
                stmt_len: Some(
                    145,
                ),
            },
        ),
    ],
)