Ticket #10389: databases-typos.diff

File databases-typos.diff, 1.2 KB (added by Tim Graham, 15 years ago)
  • docs/ref/databases.txt

     
    2424faulty`_. Users of these releases of PostgreSQL are advised to upgrade to
    2525`Release 8.2.5`_ or later. Django will raise a ``NotImplementedError`` if you
    2626attempt to use the ``StdDev(sample=False)`` or ``Variance(sample=False)``
    27 aggregate with an database backend falls within the affected release range.
     27aggregate with a database backend that falls within the affected release range.
    2828
    2929.. _known to be faulty: http://archives.postgresql.org/pgsql-bugs/2007-07/msg00046.php
    3030.. _Release 8.2.5: http://developer.postgresql.org/pgdocs/postgres/release-8-2-5.html
     
    3535===========
    3636
    3737Django expects the database to support transactions, referential integrity,
    38 and Unicode support (UTF-8 encoding). Fortunately, MySQL_ has all these
    39 features as available as far back as 3.23. While it may be possible to use
     38and Unicode (UTF-8 encoding). Fortunately, MySQL_ has all these
     39features available as far back as 3.23. While it may be possible to use
    40403.23 or 4.0, you'll probably have less trouble if you use 4.1 or 5.0.
    4141
    4242MySQL 4.1
Back to Top