]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
rowid_column becomes more like the "order by column". 'default_ordering' flag sent...
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 1 Jan 2006 21:08:22 +0000 (21:08 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 1 Jan 2006 21:08:22 +0000 (21:08 +0000)
commit705f308452b0741747c27ee4edcd75f2ec0e6ae8
tree9f23719ca0098f8d5a933aefc86a8abe32509f80
parent943bb0b0e08fec9bc0ccc784a4dd154783031e8d
rowid_column becomes more like the "order by column".  'default_ordering' flag sent to create_engine enables whether or not the rowid_column on a Table will be None or not.  mappers/relations will by default use the rowid_column for ordering if its not None, else theres no default ordering.
still should better define 'default_ordering'/'rowid_column' relationship since its a little kludgy.
lib/sqlalchemy/databases/postgres.py
lib/sqlalchemy/engine.py
lib/sqlalchemy/mapping/mapper.py
lib/sqlalchemy/mapping/properties.py
lib/sqlalchemy/sql.py
test/mapper.py
test/testbase.py