Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/ROOT/pages/databases.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ However, some privileges enable users to see additional databases regardless of

If a user has not been granted `ACCESS` privilege to any databases nor any of the above special cases, the command can still be executed but will only return the `system` database, which is always visible.
====
[NOTE]
====
Databases hosted on servers that are offline are also returned by the `SHOW DATABASES` command.
For such databases, the `address` column displays `NULL`, the `currentStatus` column displays `unknown`, and the `statusMessage` displays `Server is unavailable`.
====

======

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,22 @@ Replacement syntax for deprecated and removed features are also indicated.
| Feature
| Details

a|
label:functionality[]
label:updated[]
[source, cypher, role="noheader"]
----
SHOW DATABASES
----
a|
Changes to the visibility of databases hosted on offline servers.

For such databases:

* The `address` column will return `NULL`.
* The `currentStatus` column will return `unknown`.
* The `statusMessage` will return `Server is unavailable`.

a|
label:functionality[]
label:updated[]
Expand Down