I'm running in process hsqldb in my java code for testing purposus, and i'm getting the following error:
user lacks privilege or object not found: MY_TEMP_TABLE
only when i debug the code. If i run the (junit) test without debug, everything is working. I do need the debugger for some other areas. I'm getting the error on this query:
INSERT INTO MY_TEMP_TABLE VALUES ('a','a','a')
I don't think the problem is in sql syntax because all queries are working when running the test without debug. Any help would be appriciated..