SQL - Include a constructor receiving the configuration for all DB specific types

Bug #666233 reported by Luis Fernando Planella Gonzalez
6
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.

Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Added 2 OracleQuery constructors :

    public OracleQuery(Connection conn, Configuration configuration) {
        super(conn, configuration, new DefaultQueryMetadata());
    }

    public OracleQuery(Connection conn, Configuration configuration, QueryMetadata metadata) {
        super(conn, configuration, metadata);
    }

Changed in querydsl:
status: New → Fix Committed
importance: Undecided → Medium
Revision history for this message
Timo Westkämper (timo-westkamper) wrote :

Released in 2.0.3

Changed in querydsl:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.