Skip to content

Commit

Permalink
Do not run tests until feature flag is turned on
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince committed Sep 20, 2023
1 parent 35a55df commit 5260017
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions modules/ROOT/pages/administration/databases.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -960,8 +960,10 @@ There are no available `OPTIONS` values for composite databases.
.+ALTER DATABASE SET OPTION+
======
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher]
[source, cypher, test-skip]
----
ALTER DATABASE `options-example`
SET OPTION txLogEnrichment 'FULL'
Expand All @@ -972,8 +974,10 @@ SET OPTION txLogEnrichment 'FULL'
.+SHOW DATABASE+
======
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, test-result-skip]
[source, cypher, test-skip]
----
SHOW DATABASES yield name, options
----
Expand All @@ -996,8 +1000,10 @@ SHOW DATABASES yield name, options
.+ALTER DATABASE REMOVE OPTION+
======
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher]
[source, cypher, test-skip]
----
ALTER DATABASE `options-example`
REMOVE OPTION txLogEnrichment
Expand All @@ -1009,8 +1015,10 @@ REMOVE OPTION txLogEnrichment
.+SHOW DATABASE+
======
// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, test-result-skip]
[source, cypher, test-skip]
----
SHOW DATABASES yield name, options
----
Expand Down

0 comments on commit 5260017

Please sign in to comment.