[#2448] DSLContext.meta() returns Table objects for Oracle SYNONYMS,
without providing columns
This commit is contained in:
parent
a425d1c9dc
commit
d3dba89e7d
@ -217,9 +217,11 @@ class MetaImpl implements Meta, Serializable {
|
||||
types = new String[] { "TABLE", "VIEW" };
|
||||
break;
|
||||
|
||||
// [#2448] Avoid returning Oracle table SYNONYMs
|
||||
// [#2448] Avoid returning Oracle table SYNONYMs.
|
||||
// Note: "MATERIALIZED VIEW" is not included, as they are also
|
||||
// returned as "TABLE" by Oracle JDBC
|
||||
case ORACLE:
|
||||
types = new String[] { "TABLE", "VIEW", "MATERIALIZED VIEW" };
|
||||
types = new String[] { "TABLE", "VIEW" };
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user