使用GORM订购postgres索引

时间:2013-12-09 10:45:34

标签: postgresql grails gorm

我想知道如何设置索引的默认顺序。 Grails 2.3.3,postgres 9.

目标是这个指数:

"crstate_idx" btree (cr_state, last_updated DESC)

此GORM代码:

static mapping = {
    crState index: 'crState_Idx'
    lastUpdated index: 'crState_Idx' 
}

让我:

"crstate_idx" btree (cr_state, last_updated)

如何添加DESC部件?

1 个答案:

答案 0 :(得分:1)

没有降序索引。 B树索引从最低到最高值排序。 DESC与ASC的定义是,如果您从头开始或从头开始扫描它。这是关于你执行的查询,所以我建议你查看如何执行以降序返回行的查询。