File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed
modules/ROOT/pages/database-administration/standard-databases Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff 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----
618616ALTER DATABASE `movies`
619617SET OPTION txLogEnrichment 'FULL'
620618----
621619
622620The 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----
629625SHOW 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----
651645ALTER DATABASE `movies`
652646REMOVE OPTION txLogEnrichment
653647----
654648
655649The `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----
661654SHOW DATABASES YIELD name, options
662655----
You can’t perform that action at this time.
0 commit comments