Skip to content

Commit

Permalink
Remove test-skip anotations for cdc docs (neo4j#1167)
Browse files Browse the repository at this point in the history
CDC feature flag was enabled by default recently
  • Loading branch information
l-heemann authored Oct 30, 2023
1 parent 92b821a commit 373fdb8
Showing 1 changed file with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -610,21 +610,17 @@ There are no available `OPTIONS` values for composite databases.

==== Alter the options set for a database

// skip test until we make the change_data_capture feature flag on by default.

.Query
[source, cypher, role="test-skip"]
[source, cypher]
----
ALTER DATABASE `movies`
SET OPTION txLogEnrichment 'FULL'
----

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

// skip test until we make the change_data_capture feature flag on by default.

.Query
[source, cypher, role="test-skip"]
[source, cypher]
----
SHOW DATABASES yield name, options
----
Expand All @@ -643,20 +639,17 @@ SHOW DATABASES yield name, options

==== Remove the options set for a database

// skip test until we make the change_data_capture feature flag on by default.

.Query
[source, cypher, role="test-skip"]
[source, cypher]
----
ALTER DATABASE `movies`
REMOVE OPTION txLogEnrichment
----

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

// skip test until we make the change_data_capture feature flag on by default.
.Query
[source, cypher, role="test-skip"]
[source, cypher]
----
SHOW DATABASES YIELD name, options
----
Expand Down

0 comments on commit 373fdb8

Please sign in to comment.