[jOOQ/jOOQ#14930] Implement this for Db2, Oracle

This commit is contained in:
Lukas Eder 2023-04-17 11:50:54 +02:00
parent 1c179e06d6
commit f00caeb8c2

View File

@ -3648,10 +3648,21 @@ public abstract class AbstractDatabase implements Database {
SchemaDefinition schema = getSchema(r.value2());
if (schema != null) {
Definition view = getTable(schema, r.value3());
String name = r.value3();
Definition view = getTable(schema, name);
if (view != null)
result.put(view, r.value4());
if (view != null) {
String source = r.value4();
result.put(view, source);
}
}
}));
}