Hi,
Here is a link pointing to HQL grammar.
http://anonhibernate.labs.jboss.com/tru ... mmar/hql.g
deleteStatement
: DELETE^
(optionalFromTokenFromClause)
(whereClause)?
;
optionalFromTokenFromClause!
: (FROM!)? f:path (a:asAlias)? {
AST #range = #([RANGE, "RANGE"], #f, #a);
#optionalFromTokenFromClause = #([FROM, "FROM"], #range);
}
;
I don't get it fully.
Looks like, it is not possible to have partition specified here.
--------------------------------------------------------------
Rate the reply if you find it helpful