如何用sqlalchemy创建多个索引?

时间:2015-04-21 14:05:24

标签: python sqlalchemy

我有这样的索引

Index(
    'ix_table_index',
    func.extract('year', date),
    func.extract('month', date),
    func.extract('day', date),
)

结果我在postgresql表中有索引:

CREATE INDEX ix_table_index
    ON table USING btree
    (date_part('year'::text, date));  

monthday部分将被忽略(仅创建第一部分year)...为什么?

0 个答案:

没有答案