Closed
Description
The lib would crash when we run the following queries:
- Crash when trying to run a query with invalid quotes.
select * from ‟food‟;
- Crash when trying to show some binary column
Create table
create table tableplus_crash_example (col AggregateFunction(argMax, Int32, DateTime(3))) engine = Memory;
insert into tableplus_crash_example values (unhex('010000000001089170A883010000'));
Then run this query.
select col from tableplus_crash_example;