Left Outer Join Conditions

Description

the "org.hibernate.sql.OracleJoinFragment.addLeftOuterJoinCondition"
does not take the "!=" operator into account.

it places the "" like this "!=" instead of " !="
( != is a valid operator for Oracle )
and it returns <> for the '<>' operator

here's a patch. (maybe not the best one )
/**

  • This method is a bit of a hack, and assumes
    * that the column on the "right" side of the
    * join appears on the "left" side of the
    * operator, which is extremely wierd if this
    * was a normal join condition, but is natural
    * for a filter.
    */
    private void addLeftOuterJoinCondition(String on) {
    StringBuffer buf = new StringBuffer( on );
    for ( int i = 0; i < buf.length(); i++ ) {
    char character = buf.charAt( i );
    boolean isInsertPoint = OPERATORS.contains( new Character( character ) ) ||
    ( character == ' ' && buf.length() > i + 3 && "is ".equals( buf.substring( i + 1, i + 4 ) ) ) ;

if( character == '<' && buf.length() > i + 1 && ">".equals( buf.substring( i + 1, i + 2 ) ) ){
isInsertPoint = false;
buf.insert( i, "" );
i += 3 + 2;
}

if ( isInsertPoint ) {
buf.insert( i, "" );
i += 3;
}
if( character == '!' && buf.length() > i + 1 && "=".equals( buf.substring( i + 1, i + 2 ) ) ){
buf.insert( i, "" );
i += 3 + 2;
}
}
addCondition( buf.toString() );
}

Attachments

3

Activity

Show:

Steve EbersoleMarch 21, 2011 at 7:05 PM

Bulk closing stale resolved issues

Yajun ShiMay 5, 2007 at 8:17 PM

The case with "<=" is tested too in the attached test package (SUP-3701.zip).

Yajun Shi
SourceLabs - http://www.sourcelabs.com
Dependable Open Source Systems

Yajun ShiMay 5, 2007 at 8:13 PM

During my testing, there is no bug in Hibernate 3.1.3 and Hibernate 3.2.3 on this issue if the case is tested with Oracle 10g. My test case is attached here.

In brief, HQL:

from Company comp
left outer join comp.employees empl
with empl.birthday != :date

then the SQL produced:

select
company0_.id as id0_0_,
employees1_.id as id1_1_,
company0_.companyName as companyN2_0_0_,
employees1_.name as name1_1_,
employees1_.birthday as birthday1_1_,
employees1_.companyId as companyId1_1_
from
TB_COMPANY_TEMP company0_
left outer join
TB_EMPLOYEE_TEMP employees1_
on company0_.id=employees1_.companyId
and (
employees1_.birthday!=?
)

and there is no exception thrown.

So you don't need the patch if Oracle 10g is used.

Regards,

Yajun Shi

SourceLabs - http://www.sourcelabs.com
Dependable Open Source Systems

Milosz TylendaNovember 5, 2006 at 3:37 PM

Other operators like '>=', '<=' are also handled incorrectly.

Duplicate

Details

Assignee

Reporter

Original estimate

Time tracking

No time logged0.17h remaining

Components

Affects versions

Priority

Created October 27, 2006 at 2:58 PM
Updated March 21, 2011 at 7:05 PM
Resolved August 16, 2007 at 3:33 AM