summaryrefslogtreecommitdiff
path: root/django/db/backends
AgeCommit message (Collapse)Author
2013-09-02Used six.moves.zip_longest, new in six 1.4.0.Aymeric Augustin
2013-09-02Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-08-30Fixed #20989 -- Removed useless explicit list comprehensions.Simon Charette
2013-08-29Fixed #20989 -- Removed explicit list comprehension inside dict() and tuple()Tim Graham
Thanks jeroen.pulles at redslider.net for the suggestion and helper script.
2013-08-29Fixed #20984 -- Stopped decoding bytes in sqlite3 adapter on Python 3Claude Paroz
Thanks lvella at gmail.com for the report.
2013-08-23Python 3 compat fix for callable()Andrew Godwin
2013-08-23Fix location of tablespace clauses in schema backend column SQLAndrew Godwin
2013-08-23Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/oracle/base.py django/db/backends/postgresql_psycopg2/base.py django/db/models/signals.py tests/queries/tests.py
2013-08-23Fix Oracle's default handling and schema-prepared-statement issueAndrew Godwin
2013-08-21Oracle also treats NULLs as largests values when ordering.Simon Charette
2013-08-21Fixed test failure caused by different NULL ordering between backendsAnssi Kääriäinen
2013-08-20Oracle also treats NULLs as largests values when ordering.Simon Charette
2013-08-20Fixed test failure caused by different NULL ordering between backendsAnssi Kääriäinen
2013-08-19Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: docs/ref/django-admin.txt
2013-08-19Minor oracle fixesAndrew Godwin
2013-08-16Fixed #20829 -- Skip postgis metadata tables with introspectionHarm Geerts
2013-08-13Oracle schema backend, passes most tests and is pretty complete.Andrew Godwin
2013-08-12Start of getting Oracle to do schema stuffAndrew Godwin
2013-08-11Remove keep_default from add_fieldAndrew Godwin
2013-08-11Fix tablespace commandAndrew Godwin
2013-08-11Support index_together during model creationAndrew Godwin
2013-08-11Stop being overcautious about Field.relAndrew Godwin
2013-08-10Update get_constraints with better commentsAndrew Godwin
2013-08-10Docs tweaks (thanks timgraham)Andrew Godwin
2013-08-09Remove pointless comment.Andrew Godwin
2013-08-09Remove pointless fetch_results paramAndrew Godwin
2013-08-09Remove commented-out printAndrew Godwin
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt
2013-08-02Fixed #17519 -- Fixed missing SQL constraints to proxy models.Tim Graham
Thanks thibaultj for the report, jenh for the patch, and charettes for the tests.
2013-07-30Rename allow_syncdb to allow_migrateAndrew Godwin
2013-07-30Rename pre_ and post_syncdb to *_migrate, with aliases from old namesAndrew Godwin
2013-07-30Fixed #20785 -- Corrected exception caught for Oracle LIKE operator detectionShai Berger
The code that tests to see which LIKE expressions to use now runs using non-error-wrapped cursor, so cx_Oracle exceptions need to be caught rather than Django DatabaseErrors. Thanks Trac user ludo for report and initial patch.
2013-07-29Deprecated django.utils.importlibClaude Paroz
This was a shim for pre-Python 2.7 support.
2013-07-27Fixed a number of minor misspellings.Julien Phalip
2013-07-26Prettier importsAndrew Godwin
2013-07-22Merge branch 'master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/mysql/introspection.py django/db/backends/oracle/creation.py django/db/backends/postgresql_psycopg2/creation.py django/db/models/base.py django/db/models/loading.py
2013-07-08Fixed last_executed_query test failure on OracleShai Berger
2013-07-08fixed a mis-importt in mysql/base.pyAlex Gaynor
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-07-08Fixed #13813 -- Comparison of DatabaseWrappers doesn't raise errors.Alex Gaynor
Patch from Lukasz Balcerzak.
2013-07-02Make get_constraints return columns in orderAndrew Godwin
2013-07-02Fix get_constraints to do multi-column indexes properly on pgAndrew Godwin
2013-07-02Fix combined alters on PostgreSQLAndrew Godwin
2013-07-02Support for index_together in schema backendsAndrew Godwin
2013-07-02Merge branch 'master' into schema-alterationAndrew Godwin
2013-07-01Removed some conditional code only needed under Python 2.6.Aymeric Augustin
2013-06-30Introduced getters for connection.autocommit and .needs_rollback.Aymeric Augustin
They ensure that the attributes aren't accessed in conditions where they don't contain a valid value. Fixed #20666.
2013-06-29Advanced deprecation warnings for Django 1.7.Aymeric Augustin
2013-06-29Fixed #18592 -- Prevented crash when accessing MySQL _last_executedClaude Paroz
Thanks reames at asymmetricventures.com for the report.
2013-06-28Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/__init__.py django/db/models/fields/related.py tests/field_deconstruction/tests.py