Christian Beikov

Results 516 comments of Christian Beikov

You seem to think that a legacy dialect should "only work" with versions smaller than the minimum version of the main dialect, but this is not true. In fact, it...

I don't know for sure, but other projects that provide a Sakila sample database provide it under the BSD-2 license which seems to be the original license of the MySQL...

Let's continue the discussion on the JIRA issue. This is not as simple as you think.

Hi @katzyn, the intent is to copy the original main dialect/translator as-is into the hibernate-community-dialects project, named like `...LegacyDialect`/`...LegacySqlAstTranslator`, and then change only the main dialect: * Introduce a minimum...

The comment meant to say that the jTDS driver doesn't support the `getNString`/`setNString` methods, but `getString`/`setString` seem to work fine since the database does support the `NCHAR`/`NVARCHAR` types. I thought...

Hmm, then it might be better to register special JdbcTypes for NChar, NVarchar and NClob when we detect the jTDS driver.

My guess is, that the compiler JVMs use some kind of automatic memory limit, which is too low, leading GC overhead limit exceeded. The reason for this being too low...

This is a bit more complicated I think as the default value depends on whether Hibernate is bootstrapped via JPA or via the Hibernate native boot API. The default value...

Dunno, I always thought that hard-coding a schema name is bad practice and one should rather use a variable that is substituted.

Well, I was treating a schema more like a "tenant namespace" in the past, but I understand that it can also be used for grouping of logically connected tables, so...