postgres-parser
postgres-parser copied to clipboard
Postgres' query parser, as a Rust crate!
Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.24 to 1.0.50. Release notes Sourced from proc-macro2's releases. 1.0.50 Implement Hash for proc_macro2::LineColumn (#362) 1.0.49 Opt out of -Zrustdoc-scrape-examples on docs.rs for now 1.0.48 Documentation improvements...
Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.13.0 to 1.15.0. Release notes Sourced from num_cpus's releases. v1.15.0 Fixes update hermit-abi New Contributors @striezel made their first contribution in seanmonstar/num_cpus#126 @buffet made their first contribution...
Bumps [quote](https://github.com/dtolnay/quote) from 1.0.9 to 1.0.23. Release notes Sourced from quote's releases. 1.0.22 Documentation improvements 1.0.21 Add keywords to crates.io metadata 1.0.20 Remove workaround for dealing with invalid spans on...
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.62 to 1.0.91. Release notes Sourced from serde_json's releases. v1.0.90 Documentation improvements v1.0.89 Fix invalid JSON incorrectly accepted when a large number has no digits after decimal...
Bumps [serde](https://github.com/serde-rs/serde) from 1.0.123 to 1.0.146. Release notes Sourced from serde's releases. v1.0.146 Allow internally tagged newtype variant to contain unit (#2303, thanks @tage64) v1.0.145 Allow RefCell<T>, Mutex<T>, and RwLock<T>...
Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.57.0 to 0.60.1. Changelog Sourced from bindgen's changelog. 0.60.1 Released 2022/06/06 Fixed Fixed stack overflow in generated tests for structs with many fields (#2219). 0.60.0 Released 2022/06/05...
Hi, I added postgres-parser crate version `0.2.3` as dependency and it failed when `cargo build` was issued with the following errors: ``` [stderr] Writing bitcode... [stderr] /usr/bin/ld: skipping incompatible ../../src/common/libpgcommon.a...
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.60 to 1.0.67. Release notes Sourced from syn's releases. 1.0.67 Accept outer attributes in the Parse impl of ExprBlock (#1004) 1.0.66 Parse equality constraints on generic associated...
Hi thank you for this crate, I am considering to use it in my [db project](https://github.com/alex-dukhno/isomorphicdb) instead of [sqlparser](https://github.com/ballista-compute/sqlparser-rs) However, when I tried to run simple project from README example:...
Any way to parse plpgsql? It parses correctly CreateFunctionStmt, but since function declaration itself is a string literal it is "correctly" parsed as a string. Would be great if it...