* @return The {@link IdentificationVariable} defining either the identification variable or the
* virtual identification variable for the <code><b>DELETE</b></code> or for the
* <code><b>UPDATE</b></code> query
*/
protected IdentificationVariable findVirtualIdentificationVariable(AbstractSchemaName expression) {
VirtualIdentificationVariableFinder visitor = getVirtualIdentificationVariableFinder();
try {
expression.accept(visitor);
return visitor.expression;
}
finally {