HHH-3519 : parameters in select clause
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@15305 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
7f93fab886
commit
be0c5273b3
|
@ -374,10 +374,26 @@ public class DB2Dialect extends Dialect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
* <p/>
|
||||||
|
* DB2 is know to support parameters in the <tt>SELECT</tt> clause, but only in casted form
|
||||||
|
* (see {@link #requiresCastingOfParametersInSelectClause()}).
|
||||||
|
*
|
||||||
|
* @return True.
|
||||||
|
*/
|
||||||
public boolean supportsParametersInInsertSelect() {
|
public boolean supportsParametersInInsertSelect() {
|
||||||
// DB2 known to not support parameters within the select
|
return true;
|
||||||
// clause of an SQL INSERT ... SELECT ... statement
|
}
|
||||||
return false;
|
|
||||||
|
/**
|
||||||
|
* DB2 in fact does require that parameters appearing in the select clause be wrapped in cast() calls
|
||||||
|
* to tell the DB parser the type of the select value.
|
||||||
|
*
|
||||||
|
* @return True.
|
||||||
|
*/
|
||||||
|
public boolean requiresCastingOfParametersInSelectClause() {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean supportsResultSetPositionQueryMethodsOnForwardOnlyCursor() {
|
public boolean supportsResultSetPositionQueryMethodsOnForwardOnlyCursor() {
|
||||||
|
|
|
@ -1617,8 +1617,8 @@ public abstract class Dialect {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Does this dialect support parameters within the select clause of
|
* Does this dialect support parameters within the <tt>SELECT</tt> clause of
|
||||||
* INSERT ... SELECT ... statements?
|
* <tt>INSERT ... SELECT ...</tt> statements?
|
||||||
*
|
*
|
||||||
* @return True if this is supported; false otherwise.
|
* @return True if this is supported; false otherwise.
|
||||||
* @since 3.2
|
* @since 3.2
|
||||||
|
@ -1627,6 +1627,17 @@ public abstract class Dialect {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Does this dialect require that parameters appearing in the <tt>SELECT</tt> clause be wrapped in <tt>cast()</tt>
|
||||||
|
* calls to tell the db parser the expected type.
|
||||||
|
*
|
||||||
|
* @return True if select clause parameter must be cast()ed
|
||||||
|
* @since 3.2
|
||||||
|
*/
|
||||||
|
public boolean requiresCastingOfParametersInSelectClause() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Does this dialect support asking the result set its positioning
|
* Does this dialect support asking the result set its positioning
|
||||||
* information on forward only cursors. Specifically, in the case of
|
* information on forward only cursors. Specifically, in the case of
|
||||||
|
|
|
@ -683,10 +683,38 @@ public class HqlSqlWalker extends HqlSqlBaseWalker implements ErrorReporter, Par
|
||||||
AST versionValueNode = null;
|
AST versionValueNode = null;
|
||||||
|
|
||||||
if ( sessionFactoryHelper.getFactory().getDialect().supportsParametersInInsertSelect() ) {
|
if ( sessionFactoryHelper.getFactory().getDialect().supportsParametersInInsertSelect() ) {
|
||||||
|
int sqlTypes[] = versionType.sqlTypes( sessionFactoryHelper.getFactory() );
|
||||||
|
if ( sqlTypes == null || sqlTypes.length == 0 ) {
|
||||||
|
throw new IllegalStateException( versionType.getClass() + ".sqlTypes() returns null or empty array" );
|
||||||
|
}
|
||||||
|
if ( sqlTypes.length > 1 ) {
|
||||||
|
throw new IllegalStateException(
|
||||||
|
versionType.getClass() +
|
||||||
|
".sqlTypes() returns > 1 element; only single-valued versions are allowed."
|
||||||
|
);
|
||||||
|
}
|
||||||
versionValueNode = getASTFactory().create( HqlSqlTokenTypes.PARAM, "?" );
|
versionValueNode = getASTFactory().create( HqlSqlTokenTypes.PARAM, "?" );
|
||||||
ParameterSpecification paramSpec = new VersionTypeSeedParameterSpecification( versionType );
|
ParameterSpecification paramSpec = new VersionTypeSeedParameterSpecification( versionType );
|
||||||
( ( ParameterNode ) versionValueNode ).setHqlParameterSpecification( paramSpec );
|
( ( ParameterNode ) versionValueNode ).setHqlParameterSpecification( paramSpec );
|
||||||
parameters.add( 0, paramSpec );
|
parameters.add( 0, paramSpec );
|
||||||
|
|
||||||
|
if ( sessionFactoryHelper.getFactory().getDialect().requiresCastingOfParametersInSelectClause() ) {
|
||||||
|
// we need to wrtap the param in a cast()
|
||||||
|
MethodNode versionMethodNode = ( MethodNode ) getASTFactory().create( HqlSqlTokenTypes.METHOD_CALL, "(" );
|
||||||
|
AST methodIdentNode = getASTFactory().create( HqlSqlTokenTypes.IDENT, "cast" );
|
||||||
|
versionMethodNode.addChild( methodIdentNode );
|
||||||
|
versionMethodNode.initializeMethodNode(methodIdentNode, true );
|
||||||
|
AST castExprListNode = getASTFactory().create( HqlSqlTokenTypes.EXPR_LIST, "exprList" );
|
||||||
|
methodIdentNode.setNextSibling( castExprListNode );
|
||||||
|
castExprListNode.addChild( versionValueNode );
|
||||||
|
versionValueNode.setNextSibling(
|
||||||
|
getASTFactory().create(
|
||||||
|
HqlSqlTokenTypes.IDENT,
|
||||||
|
sessionFactoryHelper.getFactory().getDialect().getTypeName( sqlTypes[0] ) )
|
||||||
|
);
|
||||||
|
processFunction( versionMethodNode, true );
|
||||||
|
versionValueNode = versionMethodNode;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if ( isIntegral( versionType ) ) {
|
if ( isIntegral( versionType ) ) {
|
||||||
|
|
|
@ -415,11 +415,13 @@ public class BulkManipulationTest extends FunctionalTestCase {
|
||||||
reportSkip( "bulk id generation not supported", "test bulk inserts with generated id and generated timestamp");
|
reportSkip( "bulk id generation not supported", "test bulk inserts with generated id and generated timestamp");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// dialects which do not allow a parameter in the select portion of an INSERT ... SELECT statement
|
// dialects which do not allow a parameter in the select portion of an INSERT ... SELECT statement
|
||||||
// will also be problematic for this test because the timestamp here is vm-based as opposed to
|
// will also be problematic for this test because the timestamp here is vm-based as opposed to
|
||||||
// db-based.
|
// db-based.
|
||||||
if ( !getDialect().supportsParametersInInsertSelect() ) {
|
if ( ! getDialect().supportsParametersInInsertSelect() ) {
|
||||||
reportSkip( "dialect does not support parameter in INSERT ... SELECT", "test bulk inserts with generated id and generated timestamp");
|
reportSkip( "dialect does not support parameter in INSERT ... SELECT",
|
||||||
|
"test bulk inserts with generated id and generated timestamp");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue