manticore-projects

Results 448 comments of manticore-projects
trafficstars

Greetings. Not saying that your plan was feasible, but scratching the idea: ```sql select * from view_a inner join view_b on view_a.column1 = view_b.column1 ``` 1) you would need to...

Just thinking about it: why not refactor the queries on demand instead? 1) Parse the `SELECT` and identify all used `VIEWs` 2) Fetch the `VIEW` definition from H2 3) Replace...

Greetings. Unfortunately I observe the same problem with `SHUTDOWN DEFRAG` on 2.0.204 -- it repeatingly corrupts the database. 1) Create a 2.0.204 DB from SQL script 2) Run a lots...

As far as I understand it, `COMPACT` is a synonym for `DEFRAG`.

> @manticore-projects, it looks like the problem you have, is different (unless your database is also encrypted). Not encrypted. And it is a FRESH DB created from SQL Script, with...

@andreitokar, thanks for helping! I believe, that my particular concern has been addressed by you already in 2.2.219 -- I have not seen this corruption since (and I run quite...

> A fix for one old issue created a regression, a fix for that regression created another regression, its fix created a new regression from this issue. Why I'm not...

CTE with Bind Variables seem to be completely broken right now! Thanks @lukaseder for tracing it down, I would have never found out why my queries suddenly stopped returning records....

What was the last H2 Version without this regression please? Would it be able to revert this particular "Fix" only?

> > Please is there anything that can be done about? > > The way I understand it, it's somewhat related to bind variable usage? Can you avoid those? @lukaseder:...