Evgenij Ryazanov
Evgenij Ryazanov
There is a possibility that `ALTER TABLE` family of commands incorrectly executes internal DDL as regular commands where hidden internal syntax isn't accepted. But it's quite strange, because we definitely...
There are too many changes everywhere. Even small summary will have many pages, that's why nobody wrote it yet. Does your library have some basic dialect that produces standard-compliant SQL...
Please, try to write a complete standalone test case without third-party dependencies for your issue. Pure SQL or Java / JDBC only.
`STRINGTOUTF8()` and `UTF8TOSTRING()` are useless since H2 2.0.202. Casts between character and binary string do exactly the same since this version, and casts, unlike these functions, can also be used...
Result of `ENCRYPT` is a binary string (`byte[]` in JDBC) as it should be, these functions work with block cipher that operates on 128-bit blocks. It is a bad idea...
I have no idea why they decided to place this clause there and I also don't see any reasons why it should be there. In the Standard this clause is...
BNF in H2 has some design flaws (`...`, `,...`, all low-level definitions, and some other elements), so there is no reliable way to read it by some machine code. It...
@manticore-projects 1. Insane definitions of literals and other low-level elements currently need some quirks. If it's OK for you, they can be left as is. If it isn't, they need...
I think we don't want any new third-party dependencies there.
There are no good reasons to convert our custom BNF into some other BNF-like grammar with a lot of new code and then to railroad when we already have conversion...