[jOOQ/jOOQ#15325] Meta.ddl() generates broken DDL for DB2 and Derby table aliases

This commit is contained in:
Lukas Eder 2024-09-26 17:00:14 +02:00
parent 0db0beac81
commit 7119d5e3aa

View File

@ -499,6 +499,13 @@ final class MetaImpl extends AbstractMeta {
// [#15325] DB2 and Derby also return ALIASES or SYNONYMS, respectively
case DERBY:
types = new String[] { "SYSTEM TABLE", "TABLE", "VIEW" };
break;