manifold-ij icon indicating copy to clipboard operation
manifold-ij copied to clipboard

SQL statements that use a table that doesn't exist in the database cause IJ's CPU usage to be high.

Open oldshensheep opened this issue 8 months ago • 1 comments

When your code contains a SQL statement that uses a table that doesn't exist in the database, and you keep opening the file, you will find that IJ's CPU usage is extremely high.I looked at the database log and found it executes a lot of SQL every second. The SQL is the same as I provided below. If you close the file, CPU usage will be normal.

"[.sql/] insert into table_doesnt_exists(data) values(?) ".execute(ctx, data);

oldshensheep avatar Jun 06 '24 08:06 oldshensheep