summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/postgres/index.txt
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #32776 -- Added support for Array subqueries on PostgreSQL.Hannes Ljungberg2021-07-061-0/+1
|
* Fixed #29824 -- Added support for database exclusion constraints on PostgreSQL.Mads Jensen2019-07-161-0/+1
| | | | | | Thanks to Nick Pope and Mariusz Felisiak for review. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
* Fixed #27966 -- Bumped required psycopg2 version to 2.5.4.Mariusz Felisiak2017-03-211-3/+0
| | | Thanks Tim Graham for the review.
* Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh2016-08-121-0/+1
|
* Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn2016-04-221-0/+1
| | | | | | | | | | Adds a reasonably feature complete implementation of full text search using the built in PostgreSQL engine. It uses public APIs from Expression and Lookup. With thanks to Tim Graham, Simon Charettes, Josh Smeaton, Mikey Ariel and many others for their advice and review. Particular thanks also go to the supporters of the contrib.postgres kickstarter.
* Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus2016-01-221-0/+1
|
* Fixed #25949 -- Documented Psycopg2 version requirement for JSONField.Tim Graham2015-12-191-1/+2
|
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-231-2/+0
|
* Fixed #24894 -- Added contrib.postgres.functions.TransactionNowAdam Chainz2015-06-151-0/+1
|
* Fixed #24301 -- Added PostgreSQL-specific aggregate functionsAndriy Sokolovskiy2015-03-301-0/+1
|
* Fixed #24335 -- Bumped required psycopg2 version to 2.4.5 (2.5 for ↵Tim Graham2015-02-161-0/+5
| | | | contrib.postgres).
* Added versionadded annotation for contrib.postgres.Tim Graham2014-12-041-0/+2
|
* Fixed #23423 -- Added unaccent lookup in django.contrib.postgresThomas Chaumeny2014-11-281-0/+1
|
* Added HStoreField.Marc Tamlyn2014-11-041-0/+2
| | | | | Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
* Fixed spelling in docs.Tim Graham2014-05-271-2/+2
|
* Added array field support for PostgreSQL.Marc Tamlyn2014-05-221-0/+28
The first part of django.contrib.postgres, including model and two form fields for arrays of other data types. This commit is formed of the following work: Add shell of postgres app and test handling. First draft of array fields. Use recursive deconstruction. Stop creating classes at lookup time. Add validation and size parameter. Add contained_by lookup. Add SimpleArrayField for forms. Add SplitArrayField (mainly for admin). Fix prepare_value for SimpleArrayField. Stop using MultiValueField and MultiWidget. They don't play nice with flexible sizes. Add basics of admin integration. Missing: - Tests - Fully working js Add reference document for django.contrib.postgres.fields.ArrayField. Various performance and style tweaks. Fix internal docs link, formalise code snippets. Remove the admin code for now. It needs a better way of handing JS widgets in the admin as a whole before it is easy to write. In particular there are serious issues involving DateTimePicker when used in an array. Add a test for nested array fields with different delimiters. This will be a documented pattern so having a test for it is useful. Add docs for SimpleArrayField. Add docs for SplitArrayField. Remove admin related code for now. definition -> description Fix typo. Py3 errors. Avoid using regexes where they're not needed. Allow passing tuples by the programmer. Add some more tests for multidimensional arrays. Also fix slicing as much as it can be fixed. Simplify SplitArrayWidget's data loading. If we aren't including the variable size one, we don't need to search like this.