Skip to content

Commit f342383

Browse files
authored
Merge branch 'main' of https://github.com/ClickHouse/clickhouse-docs into clickstack-json
2 parents 8822d07 + 63e69d3 commit f342383

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
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/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)