Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/postgres_tests
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #25597 -- Fixed crash with SplitArrayField and ↵Tim Graham2015-10-271-0/+5
| | | | IntegerField on invalid value.
* Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić2015-09-123-5/+16
|
* Fixed #25180 -- Prevented varchar_patterns_ops and ↵Caio Ariede2015-08-153-0/+53
| | | | text_patterns_ops indexes for ArrayField.
* Fixed #25172 -- Fixed check framework to work with ↵Ion Scerbatiuc2015-08-131-6/+11
| | | | multiple databases.
* Fixed #25233 -- Fixed HStoreField.has_changed() handling ↵Tim Graham2015-08-071-0/+6
| | | | | | of initial values. Thanks Simon Charette for review.
* Fixed #25226 -- Set the model attribute on ArrayField's ↵Ion Scerbatiuc2015-08-051-0/+6
| | | | base_field
* Fixed #25215 -- Solved reference to forms.HStoreField in ↵Curtis Maloney2015-08-041-2/+11
| | | | | | declaration of HStoreField Correct test which was using the model field in a test form.
* Fixed #21127 -- Started deprecation toward requiring ↵Flavio Curella2015-07-282-4/+12
| | | | on_delete for ForeignKey/OneToOneField
* Fixed #24894 -- Added ↵Adam Chainz2015-06-153-0/+39
| | | | contrib.postgres.functions.TransactionNow
* Added missing tests for transforms usage with subquery ↵Andriy Sokolovskiy2015-06-063-0/+20
| | | | for PostgreSQL fields
* Switch to aware datetimes in test.Matthew Somerville2015-06-061-4/+4
|
* Instead of using DjangoJSONEncoder, use base_field's ↵Matthew Somerville2015-06-061-1/+1
| | | | | | | | | value_to_string. Note this means the serialization of e.g. IntegerRangeField now has strings for lower and upper, so use to_python when they came back in (same behaviour as ArrayField, hopefully, from where I also got the set_attributes_from_name function).
* Fixed #24937 -- fix serialization of Date(Time)RangeField.Matthew Somerville2015-06-051-5/+16
| | | | | Use the DjangoJSONEncoder so that datetime and date are encoded appropriately.
* Fixed #24837 -- field__contained_by=RangeMarc Tamlyn2015-06-043-1/+119
| | | | | | | | Provide `contained_by` lookups for the equivalent single valued fields related to the range field types. This acts as the opposite direction to rangefield__contains. With thanks to schinckel for the idea and initial tests.
* Name PostgreSQL correctly.Marc Tamlyn2015-05-317-28/+28
|
* Fixed #24604 -- Added JSONField to contrib.postgres.Marc Tamlyn2015-05-314-3/+287
|
* Add HasAnyKeys lookup for HStoreField.Marc Tamlyn2015-05-301-0/+6
|
* Fixed #24841 -- Made BaseRangeField.prepare_value() call ↵Villiers Strauss2015-05-251-1/+9
| | | | base_field's prepare_value()
* Fixed forms import.Florian Apolloner2015-05-241-1/+2
|
* Fixed #24844 -- Corrected has_changed implementation for ↵Andrea Grandi2015-05-241-0/+6
| | | | HStoreField.
* Fixed #24751 -- Fixed HStoreField isnull lookup.Tim Graham2015-05-131-0/+11
|
* Fixed #24714 -- Used more specific assertions than ↵Alasdair Nicol2015-04-281-1/+1
| | | | assertEqual in tests.
* Stopped special-casing postgres-specific testsClaude Paroz2015-04-1810-69/+152
| | | | Refs #23879.
* Fixed #24301 -- Added PostgreSQL-specific aggregate ↵Andriy Sokolovskiy2015-03-303-0/+302
| | | | functions
* Fixed #24341 -- Added specific error messages to ↵foresmac2015-02-201-7/+124
| | | | RangeField subclasses
* Fixed #24373 -- Added run_validators to ArrayField.Marc Tamlyn2015-02-201-1/+9
| | | | Thanks to DavidMuller for the report.
* Fixed #24290 -- Skipped postgres_tests if not running ↵Tim Graham2015-02-174-15/+0
| | | | with PostgreSQL.
* Refs #22962 -- Made test case use non-conflicting table ↵Markus Holtermann2015-02-133-44/+14
| | | | names
* Sorted imports with isort; refs #23860.Tim Graham2015-02-067-15/+18
|
* Fixed #24170 -- Implemented decompress for ↵Ng Zhi An2015-01-221-0/+21
| | | | BaseRangeField widgets
* Fixes #24169 -- More arrayfield specific lookups.Marc Tamlyn2015-01-201-0/+12
| | | | | | varchar()[] cannot compare itself to text[] Thanks to joelburton for the patch.
* Fixed #24092 -- Widened base field support for ArrayField.Marc Tamlyn2015-01-163-5/+51
| | | | | | | | | | | | | | | | | | | | | | Several issues resolved here, following from a report that a base_field of GenericIpAddressField was failing. We were using get_prep_value instead of get_db_prep_value in ArrayField which was bypassing any extra modifications to the value being made in the base field's get_db_prep_value. Changing this broke datetime support, so the postgres backend has gained the relevant operation methods to send dates/times/datetimes directly to the db backend instead of casting them to strings. Similarly, a new database feature has been added allowing the uuid to be passed directly to the backend, as we do with timedeltas. On the other side, psycopg2 expects an Inet() instance for IP address fields, so we add a value_to_db_ipaddress method to wrap the strings on postgres. We also have to manually add a database adapter to psycopg2, as we do not wish to use the built in adapter which would turn everything into Inet() instances. Thanks to smclenithan for the report.
* Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn2015-01-104-2/+419
| | | | | | | | | Added support for PostgreSQL range types to contrib.postgres. - 5 new model fields - 4 new form fields - New validators - Uses psycopg2's range type implementation in python
* Fixed #24034 -- Don't always overwrite deconstruct path.Jernej Kos2014-12-212-1/+15
| | | | | | Made deconstruct path overwriting for ArrayField conditional, so it only occurs when the deconstructed field is an instance of ArrayField itself and not a subclass.
* Fixed #23423 -- Added unaccent lookup in ↵Thomas Chaumeny2014-11-294-1/+93
| | | | django.contrib.postgres
* Fixed #23894 -- Made deconstruct methods favor kwargs ↵Markus Holtermann2014-11-281-6/+0
| | | | over args
* added test and fix to check for default null on ArrayFieldDaan Vielen2014-11-151-0/+7
|
* Removed unused import.Tim Graham2014-11-041-1/+1
|
* Added HStoreField.Marc Tamlyn2014-11-045-1/+314
| | | | | Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
* Fixed #22962 -- Default values for ArrayField with ↵Marc Tamlyn2014-07-294-1/+94
| | | | | | | | | | migrations. Fields normally try to force the default value to a string. As translatable strings are not valid default values for ArrayField, we can remove this behaviour which was causing issues with some migrations. Thanks to @schinckel for the report.
* Fixed #22907 -- Array contains must have same type.Marc Tamlyn2014-07-151-0/+7
|
* Fix a test dependent on json ordering.Marc Tamlyn2014-05-221-1/+2
|
* Added array field support for PostgreSQL.Marc Tamlyn2014-05-223-0/+411
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.