[jOOQ/jOOQ#9067] StackOverflowError generating code from Postgresql XML
schema with ARRAY columns
This commit is contained in:
parent
0781c204e3
commit
a6461d6311
@ -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()) {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user