Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #16055 -- Fixed crash when filtering against char/text GenericRelation ↵ | David Wobrock | 2023-04-18 | 1 | -0/+15 |
| | | | | relation on PostgreSQL. | ||||
* | Refs CVE-2022-34265 -- Properly escaped Extract() and Trunc() parameters. | Simon Charette | 2022-07-06 | 1 | -8/+8 |
| | | | | Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | ||||
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -39/+68 |
| | |||||
* | Fixed #33229 -- Fixed ↵ | SwastikTripathi | 2021-11-19 | 1 | -2/+10 |
| | | | | BaseDatabaseOperations.adapt_datetimefield_value()/adapt_timefield_value() crash with expressions. | ||||
* | Fixed #33214 -- Added ↵ | Manaia Junior | 2021-10-22 | 1 | -0/+5 |
| | | | | BaseDatabaseOperations.format_for_duration_arithmetic() stub method. | ||||
* | Fixed #31956 -- Fixed crash of ordering by JSONField with a custom decoder ↵ | Mariusz Felisiak | 2020-08-28 | 1 | -5/+0 |
| | | | | | | | on PostgreSQL. Thanks Marc Debureaux for the report. Thanks Simon Charette, Nick Pope, and Adam Johnson for reviews. | ||||
* | Fixed #28925 -- Fixed durations-only expressions crash on SQLite and MySQL. | Sergey Fedoseev | 2020-06-30 | 1 | -4/+0 |
| | | | | This removes also unused DatabaseOperations.date_interval_sql(). | ||||
* | Fixed #12990, Refs #27694 -- Added JSONField model field. | sage | 2020-05-08 | 1 | -0/+5 |
| | | | | | | | | | | | Thanks to Adam Johnson, Carlton Gibson, Mariusz Felisiak, and Raphael Michel for mentoring this Google Summer of Code 2019 project and everyone else who helped with the patch. Special thanks to Mads Jensen, Nick Pope, and Simon Charette for extensive reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | ||||
* | Fixed a/an typos in "SQL" usage. | Adam Johnson | 2020-05-06 | 1 | -1/+1 |
| | |||||
* | Fixed #31477 -- Removed "using" argument from ↵ | Jon Dufresne | 2020-04-20 | 1 | -1/+1 |
| | | | | DatabaseOperations.execute_sql_flush(). | ||||
* | Fixed #31473 -- Made sql_flush() use RESTART IDENTITY to reset sequences on ↵ | Jon Dufresne | 2020-04-17 | 1 | -8/+5 |
| | | | | | | | | | | | | PostgreSQL. The sql_flush() positional argument sequences is replaced by the boolean keyword-only argument reset_sequences. This ensures that the old function signature can't be used by mistake when upgrading Django. When the new argument is True, the sequences of the truncated tables will reset. Using a single boolean value, rather than a list, allows making a binary yes/no choice as to whether to reset all sequences rather than a working on a completely different set. | ||||
* | Added test coverage for DatabaseOperations.sql_flush(). | Jon Dufresne | 2020-04-17 | 1 | -2/+43 |
| | |||||
* | Fixed typo in tests/backends/base/test_operations.py. | Mariusz Felisiak | 2020-04-08 | 1 | -13/+13 |
| | |||||
* | Fixed typos in docs, comments, and exception messages. | Ville Skyttä | 2019-04-18 | 1 | -1/+1 |
| | |||||
* | Refs #28478 -- Prevented database feature based skipping on tests ↵ | Simon Charette | 2019-01-14 | 1 | -16/+17 |
| | | | | | | | disallowing queries. Database features may require a connection to be established to determine whether or not they are enabled. | ||||
* | Fixed #29813 -- Fixed DatabaseOperation test when run in isolation on MySQL. | Jon Dufresne | 2018-10-02 | 1 | -2/+8 |
| | |||||
* | Fixed #24747 -- Allowed transforms in QuerySet.order_by() and distinct(*fields). | Matthew Wilkes | 2018-02-10 | 1 | -1/+1 |
| | |||||
* | Increased test coverage for db/backends/base/operations.py. | Mads Jensen | 2017-09-30 | 1 | -1/+130 |
| | |||||
* | Fixed #26608 -- Added support for window expressions (OVER clause). | Mads Jensen | 2017-09-18 | 1 | -0/+10 |
Thanks Josh Smeaton, Mariusz Felisiak, Sergey Fedoseev, Simon Charettes, Adam Chainz/Johnson and Tim Graham for comments and reviews and Jamie Cockburn for initial patch. |