Skip to content

Commit 85aca28

Browse files
committed
remove trouble setting
1 parent 13ec90b commit 85aca28

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

placeholderReset.sh

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ echo "Copying placeholder files over generated content"
33
PLACEHOLDER=docs/_placeholders
44
DOCS=docs
55

6-
cp $PLACEHOLDER/changelog/_index.md $DOCS/whats-new/changelog/index.md
6+
FOLDERS_TO_REMOVE="docs/development docs/engines docs/interfaces docs/operations docs/sql-reference"
7+
IFS=' ' read -ra FOLDER_ARRAY <<< "$FOLDERS_TO_REMOVE"
8+
9+
echo "Removing ClickHouse/ClickHouse repository folders..."
10+
11+
# Loop through each folder and remove it
12+
for folder in "${FOLDER_ARRAY[@]}"; do
13+
if [ -d "$folder" ]; then
14+
echo "Removing directory: $folder"
15+
rm -rf "$folder"
16+
echo "✓ Removed: $folder"
17+
else
18+
echo "⚠ Directory not found: $folder"
19+
fi
20+
done
21+
22+
cp $PLACEHOLDER/changelog/_index.md $DOCS/whats-new/changelog/index.md
723
echo "Copying completed"
824
echo "----END----"

scripts/settings/autogenerate-settings.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,6 @@ insert_dest_files=(
329329
"docs/sql-reference/functions/comparison-functions.md"
330330
"docs/sql-reference/functions/conditional-functions.md"
331331
)
332-
echo "[$SCRIPT_NAME] Printing content of beta-experimental-settings.md for troubleshooting"
333-
cat "./experimental-beta-settings.md"
334332
echo "[$SCRIPT_NAME] Inserting generated markdown content between <!-- AUTOGENERATED_START --> <!-- AUTOGENERATED_END --> tags"
335333
for i in "${!insert_src_files[@]}"; do
336334
src_file="${insert_src_files[i]}"

scripts/settings/experimental-settings.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WITH
1111
format('[{}](/operations/settings/settings#{})', name, name) AS Name,
1212
format('`{}`', default) AS Default
1313
FROM system.settings
14-
WHERE tier = 'Experimental' AND alias_for=''
14+
WHERE tier = 'Experimental' AND alias_for='' AND name NOT LIKE 'allow_experimental_inverted_index'
1515
),
1616
experimental_mergetree_settings AS
1717
(

0 commit comments

Comments
 (0)