diff --git a/_includes/v19.2/misc/session-vars.html b/_includes/v19.2/misc/session-vars.html index 74368916178..3fd65994575 100644 --- a/_includes/v19.2/misc/session-vars.html +++ b/_includes/v19.2/misc/session-vars.html @@ -95,6 +95,18 @@ Yes + + + enable_zig_zag_join + + Indicates whether the cost-based optimizer will plan certain queries using a zig-zag merge join algorithm, which searches for the desired intersection by jumping back and forth between the indexes based on the fact that after constraining indexes, they share an ordering. + + on + + Yes + Yes + + extra_float_digits diff --git a/v19.2/experimental-features.md b/v19.2/experimental-features.md index 27371f2fdf5..52503823e31 100644 --- a/v19.2/experimental-features.md +++ b/v19.2/experimental-features.md @@ -20,8 +20,7 @@ The table below lists the experimental session settings that are available. For | Variable | Default Value | Description | |-------------------------------------+---------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `experimental_force_split_at` | `'off'` | Indicates whether checks to prevent incorrect usage of [`ALTER TABLE ... SPLIT AT`](split-at.html) should be skipped. | -| `experimental_enable_zigzag_join` | `'off'` | Indicates whether the [cost-based optimizer](cost-based-optimizer.html) will plan certain queries using a zig-zag merge join algorithm, which searches for the desired intersection by jumping back and forth between the indexes based on the fact that they share a sorted order in their key suffix. | -| `experimental_serial_normalization` | `'rowid'` | If set to `'virtual_sequence'`, make the [`SERIAL`](serial.html) pseudo-type optionally auto-create a sequence for [better compatibility with Hibernate sequences](https://forum.cockroachlabs.com/t/hibernate-sequence-generator-returns-negative-number-and-ignore-unique-rowid/). +| `experimental_serial_normalization` | `'rowid'` | If set to `'virtual_sequence'`, make the [`SERIAL`](serial.html) pseudo-type optionally auto-create a sequence for [better compatibility with Hibernate sequences](https://forum.cockroachlabs.com/t/hibernate-sequence-generator-returns-negative-number-and-ignore-unique-rowid/). | ## SQL statements