Skip to content

Commit 1f3b251

Browse files
Remove test-skip anotations for cdc docs (#1167) (#1171)
CDC feature flag was enabled by default recently Cherry-picked from #1167 Co-authored-by: Lasse Heemann <[email protected]>
1 parent 71202f3 commit 1f3b251

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

modules/ROOT/pages/database-administration/standard-databases/manage-databases.adoc

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -610,21 +610,17 @@ There are no available `OPTIONS` values for composite databases.
610610

611611
==== Alter the options set for a database
612612

613-
// skip test until we make the change_data_capture feature flag on by default.
614-
615613
.Query
616-
[source, cypher, role="test-skip"]
614+
[source, cypher]
617615
----
618616
ALTER DATABASE `movies`
619617
SET OPTION txLogEnrichment 'FULL'
620618
----
621619

622620
The database set options can be seen in the `options` output column of the command `SHOW DATABASES`.
623621

624-
// skip test until we make the change_data_capture feature flag on by default.
625-
626622
.Query
627-
[source, cypher, role="test-skip"]
623+
[source, cypher]
628624
----
629625
SHOW DATABASES yield name, options
630626
----
@@ -643,20 +639,17 @@ SHOW DATABASES yield name, options
643639

644640
==== Remove the options set for a database
645641

646-
// skip test until we make the change_data_capture feature flag on by default.
647-
648642
.Query
649-
[source, cypher, role="test-skip"]
643+
[source, cypher]
650644
----
651645
ALTER DATABASE `movies`
652646
REMOVE OPTION txLogEnrichment
653647
----
654648

655649
The `REMOVE OPTION` clause removes the specified option from the database using the `ALTER DATABASE` command.
656650

657-
// skip test until we make the change_data_capture feature flag on by default.
658651
.Query
659-
[source, cypher, role="test-skip"]
652+
[source, cypher]
660653
----
661654
SHOW DATABASES YIELD name, options
662655
----

0 commit comments

Comments
 (0)