diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-11-26 19:45:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-26 19:45:05 +0100 |
| commit | f091ea35150d95fc6732bbf0c27b971dd445509a (patch) | |
| tree | 254bdd5fee37cacef75eec92614f0e89fa4233ec /docs/ref/databases.txt | |
| parent | 26c2a6ff883a213b4dcadf4411740aff866153ac (diff) | |
Refs #29722 -- Added introspection of materialized views for Oracle.
Thanks Tim Graham for the review.
Diffstat (limited to 'docs/ref/databases.txt')
| -rw-r--r-- | docs/ref/databases.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index 39b3fb9898..98f14629bb 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -764,9 +764,10 @@ and a user granted ``RESOURCE WITH ADMIN OPTION`` can grant ``RESOURCE``, such a user cannot grant the individual privileges (e.g. ``CREATE TABLE``), and thus ``RESOURCE WITH ADMIN OPTION`` is not usually sufficient for running tests. -Some test suites also create views; to run these, the user also needs -the ``CREATE VIEW WITH ADMIN OPTION`` privilege. In particular, this is needed -for Django's own test suite. +Some test suites also create views or materialized views; to run these, the +user also needs ``CREATE VIEW WITH ADMIN OPTION`` and +``CREATE MATERIALIZED VIEW WITH ADMIN OPTION`` privileges. In particular, this +is needed for Django's own test suite. All of these privileges are included in the DBA role, which is appropriate for use on a private developer's database. |
