prusto
prusto copied to clipboard
A presto/trino client library written in rust.
* Add the "raw" types for time with time zone, timestamp with time zone * Add the "full" types, including those that parse the timestamp precision argument. * Ensure that...
This is a convenience so users can just iterate over a stream of rows. It also opens up the possibility of using `TryStream` combinators, although honestly I haven't found those...
The following struct compiles correctly: ``` #[derive(Presto)] struct Foo { a1: i16, a2: i16, a3: i16, a4: i16, a5: i16, a6: i16, a7: i16, a8: i16, a9: i16, a10: i16,...
Hi I need to add a custom HTTP header to my queries, is this possible with the current code base?
hello, I need to execute this query `SHOW CREATE MATERIALIZED VIEW view_name` I'm using method `get_all`, I can see from trino's console that the query is executed and finish properly...
I noticed some from_str impls should be using `FromStr` trait instead, so I converted them. I additionally simplified some macros since the compiler now knows that all its callers implement...
Proposal to move Prusto model to its own crate so it could be used by other projects that require to parse trino data but don't require a client
Do you think it could be a good idea to split your trino model into a single crate? This will allow people to create clients and implementations using the model
I found your crate and I couldn't figure out how you are decompressing the gzip body from the response. Is that done automatically by reqwest?
Hello, I am trying to run the example code in the main markdown. I have installed rustup 1.25.1, rustc 1.68.0-nightly and my toml is > prusto = { version =...