summaryrefslogtreecommitdiff
path: root/django/contrib/postgres
AgeCommit message (Collapse)Author
2017-12-01[2.0.x] Updated contrib translations from TransifexClaude Paroz
2017-11-29[2.0.x] Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen
Backport of f0a68c25118786d47041d0a435b2afa953be3c86 from master
2017-11-01[2.0.x] Fixed #28749 -- Added subquery support for ArrayField's __in lookup.Michał Pasternak
Backport of e554b72a2a5473f3f1e57a32565758757a9e8e87 from master
2017-09-19Refs #28334 -- Fixed crash in hstore/citext oid caching during test db creation.Tim Graham
2017-09-16Simplified Count.convert_value() and RegrCount.convert_value().Sergey Fedoseev
2017-09-15Fixed #28334 -- Added caching for hstore/citext OIDs.Igor Gumenyuk
2017-09-13Merged isinstance() calls.Mariusz Felisiak
2017-09-11Fixed #28492 -- Defined default output_field of expressions at the class level.Simon Charette
This wasn't possible when settings were accessed during Field initialization time as our test suite setup script was triggering imports of expressions before settings were configured.
2017-09-09Refs #24928 -- Added introspection support for PostgreSQL RangeFieldClaude Paroz
2017-09-09Refs #24928 -- Added introspection support for PostgreSQL JSONFieldClaude Paroz
Thanks Adam Johnson and Tim Graham for the reviews.
2017-09-04Fixed #28126 -- Added GistIndex to contrib.postgres.Mads Jensen
Thanks to Marc Tamlyn for the initial patch.
2017-08-26Refs #27869 -- Omitted field kwargs from GinIndex.deconstruct() if they're None.Mads Jensen
2017-08-26Refs #25809 -- Omitted pages_per_range from BrinIndex.deconstruct() if it's ↵Mads Jensen
None.
2017-08-12Fixed #27849 -- Added filtering support to aggregates.Tom
2017-08-08Fixed #28465 -- Unified index SQL creation in DatabaseSchemaEditorClaude Paroz
Thanks Tim Graham for the review.
2017-08-02Removed unused _combine() node argument from various combinable classes.Mariusz Felisiak
Unused since f59fd15c4928caf3dfcbd50f6ab47be409a43b01 (Combinable) and since its introduction in 2d877da85526bad0dad7fd6b1d56b1f924c0116a (SearchVectorCombinable/SearchQueryCombinable/SearchQuery).
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and ↵Tim Graham
Expression.convert_value(). Unused since a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-07-14Fixed #28394 -- Allowed setting BaseExpression.output_field (renamed from ↵Sergey Fedoseev
_output_field).
2017-06-27Fixed #28330 -- Prevented passing positional arguments to an Index.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-06-20Fixed #27869 -- Added fastupdate and gin_pending_list_limit params to GinIndex.Mads Jensen
Thanks Tim Graham and Markus Holtermann for review.
2017-06-17Refs #25809 -- Removed BrinIndex.__repr__().Tim Graham
In retrospect, implementing a __repr__() for index subclasses doesn't seem worthwhile.
2017-06-13Fixed #27161 -- Fixed form validation when an ArrayField's base_field has ↵Romulo Furtado
choices.
2017-06-03Fixed #28192 -- Required passing optional form field args as keyword args.Claude Paroz
2017-05-31Updated translations from TransifexClaude Paroz
Forward port of 02158a785eff923110cb4c7c7e635d3ce4a928e3 from stable/1.11.x
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
iter(dict) is equivalent to iter(dict.keys()).
2017-05-20Fixed #28227 -- Allowed importing BaseRangeField/RangeWidget from ↵Tom
contrib.postgres.forms.
2017-05-04Fixed #28161 -- Fixed return type of ArrayField(CITextField()).Simon Charette
Thanks Tim for the review.
2017-04-29Fixed #28040 -- Updated SplitArrayWidget to use template-based widget rendering.Tim Graham
Thanks Preston Timmons for review.
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
Thanks Tim Graham for the review.
2017-04-25Fixed #27996 -- Added RandomUUID function and CryptoExtension to ↵Paolo Melchiorre
contrib.postgres.
2017-04-04Updated contrib translations from TransifexClaude Paroz
Forward port of 290b2849f7ded5d21aa54c16171d806f7c14dfc9 from stable/1.11.x
2017-03-23Simplified handling of expressions in StatAggregate.Sergey Fedoseev
2017-03-20Refs #27935 -- Fixed BrinIndex.max_name_length if a project's default ↵Mariusz Felisiak
database isn't PostgreSQL. Thanks Florian Apolloner for the report.
2017-03-18Fixed #27935 -- Fixed crash with BrinIndex name > 30 characters.Mads Jensen
2017-02-11Refs #26610 -- Added CIText mixin and CIChar/Email/TextField.Mads Jensen
2017-02-07Fixed #26903 -- Fixed __contains lookup for Date/DateTimeRangeField.Mariusz Felisiak
Thanks Mariusz Felisiak and Tim Graham for polishing the patch.
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
Thanks Tim Graham for the review.
2017-02-04Fixed #27767 -- Added distinct argument to ArrayAgg.orf
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Updated translation catalogsClaude Paroz
Forward port of 518693bef559bb719e68b08904a9250abfd9237c from stable/1.11.x
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
__ne__() defaults to the opposite of __eq__() on Python 3 when it doesn't return NotImplemented.
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
Thanks Tim Graham and Simon Charette for the reviews.
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
Thanks Tim Graham for the review.
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-16Refs #25809 -- Made a few late review comments for BrinIndex.Mads Jensen
2017-01-16Removed unneeded variable in contrib/postgres/fields/jsonb.py.Dmitry Dygalo
2017-01-15Refs #25809 -- Prefered imports from django.db.models.Mads Jensen
2017-01-15Fixed #25809 -- Added BrinIndex support in django.contrib.postgres.Mads Jensen
Thanks Tim Graham and Markus Holtermann for review.