[jOOQ/jOOQ#9067] StackOverflowError generating code from Postgresql XML

schema with ARRAY columns
This commit is contained in:
Lukas Eder 2020-11-27 13:29:31 +01:00
parent 0781c204e3
commit a6461d6311

View File

@ -481,6 +481,10 @@ class GenerationUtil {
*/
static Name getArrayBaseType(SQLDialect dialect, String t, Name u) {
// [#9067] Return this for all dialects early, to prevent StackOverflowErrors
if ("ARRAY".equalsIgnoreCase(t))
return name("OTHER");
// [#4388] TODO: Improve array handling
switch (dialect.family()) {