Tyler Brinks
Tyler Brinks
### Expected behavior Serializing or deserializing types should recover allocated memory. Unmanaged memory should remain at a relatively consistent size after GC has finished executing, Gen1 and LOH in particular....
I have a solution with multiple Azure Function HTTP APIs. They were previously using a shared base class in the same project and were able to build without issue. Now,...
The following fails when parsing with the Snowflake dialect. [Cross-referenced from the C# implementation](https://github.com/TylerBrinks/SqlParser-cs/issues/14). ``` let sql = concat!( "DECLARE \ query_id_1 VARCHAR; \ query_id_2 VARCHAR; \ BEGIN \ SELECT...
This is a mirror of[ the C# issue found here](https://github.com/TylerBrinks/SqlParser-cs/issues/16) MS SQL parsing expects a comma after `primary key` and does not accept the `identity` keyword ``` #[test] fn parse_ms_sql_create_column_with_identity(){...
The following is a valid MS Sql query, but cannot ne parsed due to the `varbinary` implementation. Variable character-based columns, `nvarchar` and `varchar`, use a union type `CharacterLength` type that...