Matt Gapp

Results 14 issues of Matt Gapp

Thinking something like ```rust #[state_machine(visualize)] impl MyStruct { ... } fn main() { let mut state_machine = Blinky::default().uninitialized_state_machine().init(); let ascii_visualization: String = state_machine.visualize(); println!("{}", ascii_visualiztion); } ``` Which would print...

enhancement

Most of the changes here involve copying sync code and tweaking it to accommodate the async metadata APIs. Builds on https://github.com/pacman82/odbc-api/pull/577 For more context, see https://github.com/pacman82/odbc-api/issues/578

So I got arrow-odbc (almost) working with async-polling with these two PRs: https://github.com/pacman82/arrow-odbc/pull/102 and https://github.com/pacman82/odbc-api/pull/577 But I'm running into an issue with the snowflake ODBC driver. We're using the snowflake...

Adds support for async metadata, which is required for async support in arrow-odbc. See https://github.com/pacman82/odbc-api/issues/578 for more context.