Skip to content

Commit 589e38c

Browse files
authored
add exception
1 parent 8b7e0a7 commit 589e38c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/settings/beta-settings.sql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ FORMAT TSVRaw;
55

66
-- Then append the table content
77
WITH
8-
experimental_session_settings AS
8+
beta_session_settings AS
99
(
1010
SELECT
1111
format('[{}](/operations/settings/settings#{})', name, name) AS Name,
1212
format('`{}`', ifNull(default, ' ')) AS Default
1313
FROM system.settings
14-
WHERE tier = 'Beta' AND alias_for=''
14+
WHERE tier = 'Beta' AND alias_for='' AND name NOT LIKE 'vector_search_with_rescoring'
1515
),
16-
experimental_mergetree_settings AS
16+
beta_mergetree_settings AS
1717
(
1818
SELECT
1919
format('[{}](/operations/settings/merge-tree-settings#{})', name, name) AS Name,
@@ -24,10 +24,10 @@ WHERE tier = 'Beta'
2424
combined AS
2525
(
2626
SELECT *
27-
FROM experimental_session_settings
27+
FROM beta_session_settings
2828
UNION ALL
2929
SELECT *
30-
FROM experimental_mergetree_settings
30+
FROM beta_mergetree_settings
3131
ORDER BY Name ASC
3232
)
3333
SELECT concat('| ', Name, ' | ', Default, ' |')

0 commit comments

Comments
 (0)