summaryrefslogtreecommitdiff
path: root/dedup/utils.py
AgeCommit message (Collapse)Author
2014-03-08enable result buffering for postgresHelmut Grohne
2014-03-08restrict sqlite-specific configuration to sqlite databasesHelmut Grohne
2014-03-08Merge branch 'master' into sqlalchemyHelmut Grohne
In the mean time, the master branch evolved quite a bit and the schema changed again (eqclass added to function table). The main reason for the merge is to resolve the large amounts of conflicts once, so development of the sqlalchemy branch can continue and still benefit from changes in the master branch such as schema compatibility, adapting the indent level in web app due to the use of contextlib.closing which resembles sqlalchemy's "with db.begin() as conn:". Conflicts: autoimport.py dedup/utils.py readyaml.py update_sharing.py webapp.py
2013-08-16make debian version_compare available in sqlHelmut Grohne
2013-07-24sqlalchemy's fetchmany defaults to being fetchallHelmut Grohne
This voids the benefits of processing rows during row generation as has been observed on postgres.
2013-06-23dedup.utils: add enbale_sqlite_foreign_keys helperHelmut Grohne
Makes usage of sqlalchemy easier, cause I can invoke it once and it works for all connections.
2013-03-02move fetchiter from webapp to dedup.utilsHelmut Grohne