@Retention(value=RUNTIME) @Target(value={METHOD,FIELD}) public static @interface QuerySqlField.Group
Opposite to QuerySqlField.groups()
this annotation gives control over order of fields in a group index.
This can be needed in scenarios when we have a query like
select * from X where a = ? and b = ? order by b desc
. If we have index (a asc, b asc)
sorting on b
will be performed. Here it is preferable to have index (b desc, a asc)
which will still allow query to search on index using both fields and avoid sorting because index
is already sorted in needed way.
Modifier and Type | Required Element and Description |
---|---|
String |
name
Group index name where this field participate.
|
int |
order
Fields in this group index will be sorted on this attribute.
|
Modifier and Type | Optional Element and Description |
---|---|
boolean |
descending
Defines sorting order for this field in group.
|
public abstract String name
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.7.2 Release Date : February 6 2019