index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
db
/
backends
/
postgresql_psycopg2
/
operations.py
Age
Commit message (
Expand
)
Author
2019-01-17
Refs #25175 -- Removed db.backends.postgresql_psycopg2 per deprecation timeline.
Tim Graham
2015-08-07
Refs #25175 -- Added backwards compatibility for importing postgresql_psycopg...
Caio Ariede
2015-08-07
Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql.
Caio Ariede
2015-06-02
Fixed #9596 -- Added date transform for DateTimeField.
Jon Dufresne
2015-05-17
Renamed value_to_db_xxx to adapt_xxxfield_value.
Aymeric Augustin
2015-03-25
Renamed Field.rel attribute to remote_field
Anssi Kääriäinen
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-01-17
Required sqlparse for SQL splitting per deprecation timeline.
Tim Graham
2015-01-16
Fixed #24092 -- Widened base field support for ArrayField.
Marc Tamlyn
2015-01-14
Fixed #22603 -- Reorganized classes in django.db.backends.
Tim Graham
2015-01-12
Fixed #24031 -- Added CASE expressions to the ORM.
Michał Modzelewski
2014-12-30
Removed db.backends methods which only call super().
Tim Graham
2014-12-20
Fixed #2443 -- Added DurationField.
Marc Tamlyn
2014-09-05
Limited lines to 119 characters in django/
Tim Graham
2014-04-26
Fixed #3214 -- Stopped parsing SQL with regex.
Aymeric Augustin
2014-02-09
Fixed #21844: Move quote_parameter off of Operations and rename
Andrew Godwin
2013-11-02
Fixed all E261 warnings
coagulant
2013-09-06
Adding 'sqlmigrate' command and quote_parameter to support it.
Andrew Godwin
2013-07-08
A large number of stylistic cleanups across django/db/
Alex Gaynor
2013-06-26
Fixed #20462 -- null/non-string regex lookups are now consistent
Andrew Clark
2013-06-10
Added a stealth option to flush to allow cascades.
Aymeric Augustin
2013-05-19
Fixed #11442 -- Postgresql backend casts all inet types to text
Erik Romijn
2013-03-18
Fixed #19968 -- Dropped support for PostgreSQL < 8.4.
Aymeric Augustin
2013-03-11
Moved standard SQL for savepoints in the base backend.
Aymeric Augustin
2013-02-19
Ensured a connection is established when checking the database version.
Aymeric Augustin
2013-02-16
Fixed #17260 -- Added time zone aware aggregation and lookups.
Aymeric Augustin
2012-07-24
Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.
Ramiro Morales
2012-06-13
Fixed #18461 -- Ensured that last_executed_query returns Unicode
Claude Paroz
2012-06-07
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Claude Paroz
2012-03-13
Fixed #17882 (again) -- Updated the database connections' time zone when time...
Aymeric Augustin
2011-12-22
Added support for modifying the effect of ``DISTINCT`` clauses so they
Ramiro Morales
2011-10-14
Fixed #12308 -- Added tablespace support to the PostgreSQL backend.
Aymeric Augustin
2011-09-09
Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...
Alex Gaynor
2011-07-13
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...
Jannis Leidel
2011-06-19
Fixed #11065, #11285 -- Streamlined PostgreSQL version detection, fixing inco...
Ramiro Morales
2011-06-16
Fixed #16255 -- Raised minimum PostgreSQL version supported to 8.2.
Ramiro Morales
2011-04-22
Fixed #14091 - be more correct about logging queries in connection.queries.
Jacob Kaplan-Moss
2011-04-05
Fixed #13630 -- Made __init__ methods of all DB backends' DatabaseOperations ...
Ramiro Morales
2011-04-02
Deprecated the psycopg-based postgresql database backend.
Russell Keith-Magee