According to the 
documentation<http://docs.sqlalchemy.org/en/rel_0_8/core/constraints.html?highlight=desc#functional-indexes>,
 
the following index definition:

Index('ix_table_column_desc', table.c.column.desc())

should render in PostgreSQL to:

CREATE INDEX ix_table_column_desc
  ON table
  USING btree
  (modified DESC);

but instead the DESC is omitted and I only get:

CREATE INDEX ix_table_column_desc
  ON table
  USING btree
  (modified);

Am I missing some detail here? Should I create a ticket about this issue?

Thanks,
--Pedro.

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to