mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
105 lines
2.4 KiB
Bash
Executable File
105 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
GIT_BRANCH=$(git branch --show-current)
|
|
|
|
if [ "$GIT_DOCS_BRANCH" ] && ! [ "$GIT_DOCS_BRANCH" == "$GIT_BRANCH" ]; then
|
|
git fetch origin --depth=1 -- "$GIT_DOCS_BRANCH:$GIT_DOCS_BRANCH"
|
|
git checkout "$GIT_DOCS_BRANCH"
|
|
else
|
|
# Update docs repo
|
|
git pull
|
|
fi
|
|
|
|
# The repo is usually mounted to /ClickHouse
|
|
|
|
for lang in en ru zh
|
|
do
|
|
if [ -d "/ClickHouse/docs/${lang}" ]; then
|
|
cp -rf "/ClickHouse/docs/${lang}" "/opt/clickhouse-docs/docs/"
|
|
fi
|
|
done
|
|
|
|
# Generate pages with settings
|
|
|
|
./clickhouse -q "
|
|
WITH
|
|
|
|
'/ClickHouse/src/Core/Settings.cpp' AS cpp_file,
|
|
|
|
settings_from_cpp AS
|
|
(
|
|
SELECT extract(line, 'M\\(\\w+, (\\w+),') AS name
|
|
FROM file(cpp_file, LineAsString)
|
|
WHERE match(line, '^\\s*M\\(')
|
|
),
|
|
|
|
main_content AS
|
|
(
|
|
SELECT format('## {} {}\\n\\nType: {}\\n\\nDefault value: {}\\n\\n{}\\n\\n', name, '{#'||name||'}', type, default, trim(BOTH '\\n' FROM description))
|
|
FROM system.settings WHERE name IN settings_from_cpp
|
|
ORDER BY name
|
|
),
|
|
|
|
'---
|
|
sidebar_label: Core Settings
|
|
sidebar_position: 2
|
|
slug: /en/operations/settings/settings
|
|
toc_max_heading_level: 2
|
|
---
|
|
|
|
# Core Settings
|
|
|
|
All below settings are also available in table [system.settings](/docs/en/operations/system-tables/settings).
|
|
|
|
' AS prefix
|
|
|
|
SELECT prefix || (SELECT groupConcat(*) FROM main_content)
|
|
INTO OUTFILE '/opt/clickhouse-docs/docs/en/operations/settings/settings.md' TRUNCATE FORMAT LineAsString
|
|
"
|
|
|
|
./clickhouse -q "
|
|
WITH
|
|
|
|
'/ClickHouse/src/Core/FormatFactorySettingsDeclaration.h' AS cpp_file,
|
|
|
|
settings_from_cpp AS
|
|
(
|
|
SELECT extract(line, 'M\\(\\w+, (\\w+),') AS name
|
|
FROM file(cpp_file, LineAsString)
|
|
WHERE match(line, '^\\s*M\\(')
|
|
),
|
|
|
|
main_content AS
|
|
(
|
|
SELECT format('## {} {}\\n\\nType: {}\\n\\nDefault value: {}\\n\\n{}\\n\\n', name, '{#'||name||'}', type, default, trim(BOTH '\\n' FROM description))
|
|
FROM system.settings WHERE name IN settings_from_cpp
|
|
ORDER BY name
|
|
),
|
|
|
|
'---
|
|
sidebar_label: Format Settings
|
|
sidebar_position: 52
|
|
slug: /en/operations/settings/formats
|
|
toc_max_heading_level: 2
|
|
---
|
|
|
|
# Format settings {#format-settings}
|
|
|
|
' AS prefix
|
|
|
|
SELECT prefix || (SELECT groupConcat(*) FROM main_content)
|
|
INTO OUTFILE '/opt/clickhouse-docs/docs/en/operations/settings/settings-formats.md' TRUNCATE FORMAT LineAsString
|
|
"
|
|
|
|
# Force build error on wrong symlinks
|
|
sed -i '/onBrokenMarkdownLinks:/ s/ignore/error/g' docusaurus.config.js
|
|
|
|
if [[ $# -lt 1 ]] || [[ "$1" == "--"* ]]; then
|
|
export CI=true
|
|
exec yarn build "$@"
|
|
fi
|
|
|
|
exec "$@"
|