[jOOQ/jOOQ#19304] BigQuery nested ROW emulation produces invalid column names

This commit is contained in:
Lukas Eder 2025-10-31 09:34:19 +01:00
parent 639859836f
commit 9f12238801

View File

@ -1933,6 +1933,11 @@ final class Tools {
return map(names, n -> n instanceof Name name ? name : DSL.name(String.valueOf(n)));
}
static final String sanitiseName(Configuration configuration, String name) {
switch (configuration.family()) {
@ -1941,6 +1946,10 @@ final class Tools {
default:
return name;
}
@ -7329,6 +7338,7 @@ final class Tools {
return NestedCollectionEmulation.JSONB;
case H2:
case MARIADB:
case MYSQL: