SQL - Include a constructor receiving the configuration for all DB specific types
Bug #666233 reported by
Luis Fernando Planella Gonzalez
on 2010-10-25
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| Querydsl |
Fix Released
|
Medium
|
Unassigned |
Bug Description
Currently, MySQLQuery has a constructor receiving the Configuration instance, but others are missing (like OracleQuery).
Please, include that constructor on all DB-specific query extensions.
Timo Westkämper (timo-westkamper) wrote : | #1 |
Changed in querydsl: | |
status: | New → Fix Committed |
importance: | Undecided → Medium |
Timo Westkämper (timo-westkamper) wrote : | #2 |
Released in 2.0.3
Changed in querydsl: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
Added 2 OracleQuery constructors :
public OracleQuery( Connection conn, Configuration configuration) { adata() );
super(conn, configuration, new DefaultQueryMet
}
public OracleQuery( Connection conn, Configuration configuration, QueryMetadata metadata) {
super(conn, configuration, metadata);
}