Skip to content

Commit 94c3e8d

Browse files
committed
refactor: dedup Early Access
1 parent 2f7640b commit 94c3e8d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/content/stable/api/ysql/the-sql-language/statements/ddl_create_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ ALTER TABLE child0 DROP CONSTRAINT child0_partition_check;
150150
Repeat steps 1–9 for `child1`, `child2`, and any other partitions as needed.
151151

152152
{{< note title="Note" >}}
153-
Step 4 and the surrounding `BEGIN`/`COMMIT` block rely on two features:
153+
Step 4 and the surrounding `BEGIN`/`COMMIT` block rely on two features, both Early Access and available in YugabyteDB {{<release "2025.2">}} and later:
154154

155-
- Object locking, for the `LOCK` itself: set the YB-TServer flag `enable_object_locking_for_table_locks=true` (Early Access, available in YugabyteDB {{<release "2025.2">}} and later).
156-
- Transactional DDL, to run the `BEGIN`/`COMMIT` block: set the YB-TServer flag `ysql_yb_ddl_transaction_block_enabled=true` (Early Access, available in YugabyteDB {{<release "2025.2">}} and later).
155+
- Object locking, for the `LOCK` itself: set the YB-TServer flag `enable_object_locking_for_table_locks=true`.
156+
- Transactional DDL, to run the `BEGIN`/`COMMIT` block: set the YB-TServer flag `ysql_yb_ddl_transaction_block_enabled=true`.
157157
Object locking depends on this flag as well.
158158

159159
It only serves to hold a lock on the parent so that concurrent reads and writes don't miss the partition's data while it is detached.

0 commit comments

Comments
 (0)