summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql_psycopg2
AgeCommit message (Expand)Author
2013-08-16[1.6.x] Fixed #20829 -- Skip postgis metadata tables with introspectionHarm Geerts
2013-06-26Fixed #20462 -- null/non-string regex lookups are now consistentAndrew Clark
2013-06-19Removed several unused imports.Aymeric Augustin
2013-06-10Added a stealth option to flush to allow cascades.Aymeric Augustin
2013-05-19Fixed #11442 -- Postgresql backend casts all inet types to textErik Romijn
2013-04-01Fixed #16737 -- Support non-ascii column names in inspectdbClaude Paroz
2013-03-18Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin
2013-03-11Moved standard SQL for savepoints in the base backend.Aymeric Augustin
2013-03-11Removed superfluous code now that connections use autocommit by default.Aymeric Augustin
2013-03-11Enabled database-level autocommit for all backends.Aymeric Augustin
2013-03-11Removed _enter/_leave_transaction_management.Aymeric Augustin
2013-03-11Added BaseDatabaseWrapper.ensure_connection.Aymeric Augustin
2013-03-11Expressed the dirty flag handling logic in terms of autocommit.Aymeric Augustin
2013-03-11Stopped flipping the uses_savepoints feature at runtime.Aymeric Augustin
2013-03-11Enabled autocommit for PostgreSQL.Aymeric Augustin
2013-03-11Separated autocommit and isolation level handling for PostgreSQL.Aymeric Augustin
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-02Fixed #18130 -- Made the isolation level configurable on PostgreSQL.Aymeric Augustin
2013-03-02Reordered methods in database wrappers.Aymeric Augustin
2013-03-02Add introspection support for BinaryFieldClaude Paroz
2013-03-02Add a BinaryField model fieldClaude Paroz
2013-02-28Implemented persistent database connections.Aymeric Augustin
2013-02-27Refactored database exceptions wrapping.Aymeric Augustin
2013-02-27Fixed #19861 -- Transaction ._dirty flag improvementAnssi Kääriäinen
2013-02-19Ensured a connection is established when checking the database version.Aymeric Augustin
2013-02-18Implemented PostgreSQL version as a cached property.Aymeric Augustin
2013-02-18Factored out common code in database backends.Aymeric Augustin
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2013-02-10Fixed #19638 -- Skipped tx support testing for some DBsAnssi Kääriäinen
2013-01-12Fixed #17574 -- Implemented missing get_key_columns in PostgreSQL backendClaude Paroz
2013-01-12Return namedtuple from get_table_descriptionClaude Paroz
2013-01-07Created special PostgreSQL text indexes when unique is TrueClaude Paroz
2012-12-18Fixed #19441 -- Created PostgreSQL varchar index when unique=TrueClaude Paroz
2012-11-27Fixed #19274 -- Made db connection creation overridable in subclassesAnssi Kääriäinen
2012-09-20Imported getLogger directly from logging moduleClaude Paroz
2012-09-12Fixed #18790 -- Encoded database password on Python 2Claude Paroz
2012-08-30Made get_table_description also return the size of char fields on SQLiteClaude Paroz
2012-08-18[py3] Ported django.utils.safestring.Aymeric Augustin
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Exception aren't iterable in Python 3.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-10Fixed #18602 -- Improved error message when database NAME is missingClaude Paroz
2012-06-13Fixed #18461 -- Ensured that last_executed_query returns UnicodeClaude Paroz
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-04-30Made get_indexes() consistent across backends.Anssi Kääriäinen
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-13Fixed #17882 (again) -- Updated the database connections' time zone when time...Aymeric Augustin
2012-02-11Fixed #10837 -- Added CHAR(X)->CharField to mapping used in Postgres DB intro...Ramiro Morales
2012-02-11Fixed #7783 -- Made introspection of nullable columns more robust with Postgres.Ramiro Morales
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales