Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince committed Sep 25, 2023
1 parent 8c46310 commit 2766354
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions modules/ROOT/pages/administration/databases.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ SET OPTION option value
[WAIT [n [SEC[OND[S]]]]\|NOWAIT]
----

[source, syntax, role="noheader"]
[source, syntax]
----
ALTER DATABASE name [IF EXISTS]
REMOVE OPTION option
Expand All @@ -106,7 +106,7 @@ REMOVE OPTION option

[NOTE]
====
There can be multiple SET OPTION or REMOVE OPTION clauses for different option keys.
There can be multiple `SET OPTION` or `REMOVE OPTION` clauses for different option keys.
====

| STOP DATABASE
Expand Down Expand Up @@ -938,7 +938,6 @@ CREATE DATABASE `options-example`;
////

The `ALTER DATABASE` command can be used to set or remove specific options, which are listed below.
This is a subset of the options allowed for `CREATE DATABASE` as the remaining create options are only applied during the creation of the database.

[options="header"]
|===
Expand All @@ -964,7 +963,7 @@ There are no available `OPTIONS` values for composite databases.
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, test-skip]
[source, cypher, role="test-skip"]
----
ALTER DATABASE `options-example`
SET OPTION txLogEnrichment 'FULL'
Expand All @@ -978,7 +977,7 @@ SET OPTION txLogEnrichment 'FULL'
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, test-skip]
[source, cypher, role="test-skip"]
----
SHOW DATABASES yield name, options
----
Expand All @@ -1004,7 +1003,7 @@ SHOW DATABASES yield name, options
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, test-skip]
[source, cypher, role="test-skip"]
----
ALTER DATABASE `options-example`
REMOVE OPTION txLogEnrichment
Expand All @@ -1019,9 +1018,9 @@ REMOVE OPTION txLogEnrichment
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, test-skip]
[source, cypher, role="test-skip"]
----
SHOW DATABASES yield name, options
SHOW DATABASES YIELD name, options
----
// Limited result set.
Expand Down

0 comments on commit 2766354

Please sign in to comment.