ellie-commons / sequeler

SQL Client built in Vala
GNU General Public License v3.0
804 stars 66 forks source link

Crash when selecting a variable via query tab #377

Open docquantum opened 2 years ago

docquantum commented 2 years ago

Version: 0.8.0, installed on Ubuntu 22.04 through apt

I have only noticed this so far when working with variables. A base example would be to SET a variable and then SELECT it which will cause the program to segfault. Sometimes the query is executed and it returns nothing until I run it a second time which returns the data. Other times, it crashes on the first run of the query, or the second, or subsequent calls.

e.g.

SET @testVar = "test";
SELECT @testVar;