我正在尝试为coalesce函数而不是列上的表设置索引。我正在使用PostgreSQL,我正在尝试实现类似的东西:
create index t on tbl using btree (coalesce(ts_updated, '2002-08-08'))
任何人都知道如何在ORM框架中使用SQLAlchemy实现这一目标?
答案 0 :(得分:3)
SQLAlchemy还不支持索引定义中的表达式,但它是planned feature。现在你必须使用custom DDL (see examples in documentation)。