summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
AgeCommit message (Collapse)Author
2015-11-14[1.8.x] Fixed #25666 -- Fixed the exact lookup of ArrayField.Dmitry Dygalo
Backport of 263b3d2ba132ea443193dc0b728741317742c8d3 from master
2015-11-12[1.8.x] Refs #24937 -- Backported more commits to fix for serialization of ↵Matthew Somerville
Date(Time)RangeField. Instead of using DjangoJSONEncoder, use base_field's 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). Backport of 86d9b10dc33cc115fee2ecab40a569354ac55d15 and 8a842148b6deaab021526e2689279cf5e232945f from master
2015-11-11[1.8.x] Fixed #24937 -- Fixed serialization of Date(Time)RangeField.Matthew Somerville
Use the DjangoJSONEncoder so that datetime and date are encoded appropriately. Backport of 2926559cce34e48efb4b073721926d737e372dd3 from master
2015-10-27[1.8.x] Fixed #25597 -- Fixed crash with SplitArrayField and IntegerField on ↵Tim Graham
invalid value. Backport of 1f07da3e29c7c3d47968e1c4531dd9bf902575b7 from master
2015-08-15[1.8.x] Fixed #25180 -- Prevented varchar_patterns_ops and text_patterns_ops ↵Caio Ariede
indexes for ArrayField. Backport of dad8434d6ff5da10959672726dc9b397296d380b from master
2015-08-07[1.8.x] Fixed #25233 -- Fixed HStoreField.has_changed() handling of initial ↵Tim Graham
values. Thanks Simon Charette for review. Backport of a7b7f27c05244d69a11545261eb3bbd73791b3d2 from master
2015-08-04[1.8.x] Fixed #25215 -- Solved reference to forms.HStoreField in declaration ↵Curtis Maloney
of HStoreField Correct test which was using the model field in a test form. Backport of 9f73009e98c51986a50cc45844b8bca72673e955 from master
2015-06-06[1.8.x] Added missing tests for transforms usage with subquery for ↵Andriy Sokolovskiy
PostgreSQL fields Backport of 2a7c59cd885b4c9f0584015c34c17c9ebca6d417 from master
2015-05-25Fixed #24844 -- Corrected has_changed implementation for HStoreField.Andrea Grandi
Backport of 43b2d88a5b9cfb151ccf7ac861f2750e70c0e2c4 from master
2015-05-25[1.8.x] Fixed #24841 -- Made BaseRangeField.prepare_value() call ↵Villiers Strauss
base_field's prepare_value() Backport of 614bec41b5306b32b8de20d66f047ff8d6f35256 from master
2015-05-13[1.8.x] Fixed #24751 -- Fixed HStoreField isnull lookup.Tim Graham
Backport of 3c8fe5dddf34533a419d2deed5208a28de32cb4a from master
2015-04-28[1.8.x] Fixed #24714 -- Used more specific assertions than assertEqual in tests.Alasdair Nicol
Backport of eaeea6f94701547ce1b50dbcf5cf71460e9e4c91 from master
2015-02-20[1.8.x] Fixed #24341 -- Added specific error messages to RangeField subclassesforesmac
Backport of 1d1d5d1c315e0e58f02a7f2a07b56ed20b09c087 from master
2015-02-20[1.8.x] Fixed #24373 -- Added run_validators to ArrayField.Marc Tamlyn
Thanks to DavidMuller for the report. Backport of c490e410af from master
2015-02-17[1.8.x] Fixed #24290 -- Skipped postgres_tests if not running with PostgreSQL.Tim Graham
Backport of 8b39f33d78ce5749f8ca40a7ae6823b5f6c26c09 from master
2015-02-13[1.8.x] Refs #22962 -- Made test case use non-conflicting table namesMarkus Holtermann
Backport of b06935a486e633e9732bce2bc5f796eb437b2531 from master
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
Backport of 0ed7d155635da9f79d4dd67e4889087d3673c6da from master
2015-01-23[1.8.x] Fixed #24170 -- Implemented decompress for BaseRangeField widgetsNg Zhi An
Backport of 4669b6a807811d6763b9fdc5df974cb67aa1fb56 from master
2015-01-20[1.8.x] Fixes #24169 -- More arrayfield specific lookups.Marc Tamlyn
varchar()[] cannot compare itself to text[] Thanks to joelburton for the patch. Backport of 0ae94d0d31 from master
2015-01-16Fixed #24092 -- Widened base field support for ArrayField.Marc Tamlyn
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.
2015-01-10Fixed #24001 -- Added range fields for PostgreSQL.Marc Tamlyn
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
2014-12-21Fixed #24034 -- Don't always overwrite deconstruct path.Jernej Kos
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.
2014-11-28Fixed #23423 -- Added unaccent lookup in django.contrib.postgresThomas Chaumeny
2014-11-28Fixed #23894 -- Made deconstruct methods favor kwargs over argsMarkus Holtermann
2014-11-15added test and fix to check for default null on ArrayFieldDaan Vielen
2014-11-04Removed unused import.Tim Graham
2014-11-04Added HStoreField.Marc Tamlyn
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews.
2014-07-29Fixed #22962 -- Default values for ArrayField with migrations.Marc Tamlyn
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.
2014-07-15Fixed #22907 -- Array contains must have same type.Marc Tamlyn
2014-05-22Fix a test dependent on json ordering.Marc Tamlyn
2014-05-22Added array field support for PostgreSQL.Marc Tamlyn
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.