HHH-16035 change the default for hibernate.type.preferred_duration_jdbc_type to NUMERIC
There's really no value at all in having h2 as the only platform where Duration is persisted as 'interval second' by default. People usually use h2 for testing, and probably actually prefer if the schema is more similar to the schema of their "real" database. Also, this tiny change fixes issues 1. and 2. of HHH-16035 as a side-effect.
This commit is contained in:
parent
669be6a776
commit
6f7b17d36b
|
@ -546,7 +546,7 @@ public final class ConfigurationHelper {
|
||||||
return explicitSetting;
|
return explicitSetting;
|
||||||
}
|
}
|
||||||
|
|
||||||
return SqlTypes.INTERVAL_SECOND;
|
return SqlTypes.NUMERIC;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Incubating
|
@Incubating
|
||||||
|
|
Loading…
Reference in New Issue