Evgenij Ryazanov
Evgenij Ryazanov
You can edit this file as you need. For example, if there is a referential constraint violation, you need to decide what to do with rows with broken links, you...
I don't think that equality of `cast ('a' as character varying)` to `cast ('a' as character(255))` should be really expected. In the SQL Standard, result of such comparison depends on...
Another question is why H2 treats `'a'` as a value of `CHARACTER VARYING` data type, because the Standard requires fixed-width data type. But comparison of `cast('a' as character)` to `cast('a'...
We definitely have a bug here, because comparison and `IN` predicate work in different ways, their behavior should be consistent.
H2 determines `CHARACTER VARYING(100)` as a combined type for `CHARACTER(100)` and `CHARACTER VARYING(1)` and this is actually required by the SQL Standard and we cannot change it, because it will...
H2, MySQL, and PostgreSQL violate the SQL Standard in exactly the same way when we talk about data type of a character string literal. I guess many others too, this...
I cannot reproduce this particular exception, maybe it isn't related to H2, for example, firewalls and anti-virus software can create some problems with TCP connections between processes. This combination of...
`DB_CLOSE_ON_EXIT=FALSE` can be used on your own risk only. If this setting isn't used, H2 registers a shutdown hook. Anyway, it would be better to stop the TCP / PG...
It looks like a bug. Please, try to write a test case (without any third-party dependencies).
What is your connection URL? H2 has various dangerous connection options for special use cases. > I am using latest h2db 2.1.214 > Chunk 849734 not found [2.1.212/9] 2.1.212 or...