HHH-4671 - Derby is one of those dialects that should not support "cross join"

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18223 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2009-12-13 01:17:08 +00:00
parent 22e78ef6bf
commit fc54029a9f

View File

@ -86,6 +86,9 @@ public DerbyDialect() {
return driverVersionMajor > 10 || ( driverVersionMajor == 10 && driverVersionMinor >= 5 );
}
public String getCrossJoinSeparator() {
return ", ";
}
/**
* This is different in Cloudscape to DB2.