summaryrefslogtreecommitdiff
path: root/docs/ref/models/database-functions.txt
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed versionadded/changed annotations for 1.11.Tim Graham2017-09-221-6/+0
|
* Fixed #26608 -- Added support for window expressions (OVER clause).Mads Jensen2017-09-181-0/+129
| | | | | 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.
* Fixed #28568 -- Fixed typo in docs/ref/models/database-functions.txt.Michael2017-09-041-3/+3
| | | And made an example use naming consistent with the rest of the doc.
* Clarified Concat example in docs.Mathieu Hinderyckx2017-08-141-4/+8
|
* Fixed #27473 -- Added DurationField support to Extract.Daniel Hahler2017-06-281-6/+10
|
* Fixed #28103 -- Added quarter extract, truncation, and lookup.Mads Jensen2017-06-081-7/+26
| | | Thanks Mariusz Felisiak, Tim Graham, and Adam Johnson for review.
* Refs #25240 -- Added ExtractWeek examples.Mads Jensen2017-06-081-7/+10
|
* Refs #27834 -- Removed Value wrapping from StrIndex's substring param.Adam Johnson2017-04-031-6/+9
|
* Fixed #27834 -- Added StrIndex database function.Brad Melin2017-03-141-0/+32
|
* Removed versionadded/changed annotations for 1.10.Tim Graham2017-01-171-4/+0
|
* Replaced RawSQL with Cast in Coalesce doc example.Simon Charette2016-11-301-3/+3
|
* Fixed #25240 -- Added ExtractWeek and exposed it through the __week lookup.Mads Jensen2016-11-111-0/+15
| | | Thanks to Mariusz Felisiak and Tim Graham for review.
* Fixed #27209 -- Fixed typo in docs/ref/models/database-functions.txt.Simon Charette2016-09-121-1/+1
| | | Thanks Valentin Ignatyev for the report.
* Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.Simon Charette2016-07-081-0/+11
| | | | Thanks Tim for the review.
* Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.Simon Charette2016-07-081-7/+65
| | | | Thanks Josh for the amazing testing setup and Tim for the review.
* Refs #25774 -- Adjusted datetime database function docs field names.Simon Charette2016-07-081-42/+42
|
* Removed versionadded/changed annotations for 1.9.Tim Graham2016-05-201-18/+0
|
* Fixed #25774 -- Refactor datetime expressions into public APIJosh Smeaton2016-05-181-0/+399
|
* Fixed #24932 -- Added Cast database function.Claude Paroz2016-03-291-0/+18
| | | | Thanks Ian Foote for the initial patch.
* Fixed #26124 -- Added missing code formatting to docs headers.rowanv2016-02-011-18/+18
|
* Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus2016-01-221-9/+9
|
* Fixed #25508 -- Modified QuerySet.__repr__() to disambiguate it from a list.Tim Graham2015-10-061-1/+1
|
* Removed versionadded/changed annotations for 1.8.Tim Graham2015-09-231-2/+0
|
* Fixed #24629 -- Unified Transform and Expression APIsJosh Smeaton2015-09-211-0/+24
|
* Fixed #21127 -- Started deprecation toward requiring on_delete for ↵Flavio Curella2015-07-271-1/+1
| | | | ForeignKey/OneToOneField
* Fixed #24894 -- Added contrib.postgres.functions.TransactionNowAdam Chainz2015-06-151-1/+9
|
* Minor edits to Greatest/Least docs; refs #24767.Tim Graham2015-06-051-11/+11
|
* Capitalized "Python" in docs.Tim Graham2015-06-051-2/+2
|
* Fixed #24925 -- Document using Coalesce on MySQLIan Foote2015-06-051-0/+11
| | | | | Add warning for using Coalesce with python values on MySQL and document workaround.
* Fixed #24767 -- Added Greatest and Least expressionsIan Foote2015-06-051-0/+68
| | | | Greatest and Least are row-level Function versions of Min and Max.
* Fixed #24866 -- Added Now() database functionAdam Chainz2015-06-021-0/+15
|
* Fixed #23753 -- Added a suite of SQL FunctionsJosh Smeaton2014-12-271-0/+153
Added functions and tests Added docs and more tests Added TextField converter to mysql backend Aliased Value as V in example docs and tests Removed unicode_compatible in example Fixed console emulation in examples