You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INTO OUTFILE 'docs/en/operations/settings/settings.md' TRUNCATE FORMAT LineAsString
79
79
"
80
80
81
-
# Replace issue sequences for mdx3
82
-
if [[ "$OSTYPE"=="darwin"* ]];then
83
-
# macOS
84
-
# allow_archive_path_syntax
85
-
sed -i '''s#'\''\\\\<archive\\\\> :: \\\\<file\\\\>'\''#\`<archive> :: <file>\`#g' docs/en/operations/settings/settings.md
86
-
# max_partitions_to_read
87
-
sed -i ''"s/<= 0 means unlimited/\<0 means unlimited/g" docs/en/operations/settings/settings.md
88
-
# optimize_time_filter_with_preimage
89
-
sed -i ''"s|toYear(col) = 2023 -> col >= '2023-01-01' AND col <= '2023-12-31'|\\\`toYear(col) = 2023 -> col >= '2023-01-01' AND col <= '2023-12-31'\\\`|g" docs/en/operations/settings/settings.md
90
-
# stop_refreshable_materialized_views_on_startup
91
-
sed -i '''s@\\\\<name\\\\>@\\<name>@g' docs/en/operations/settings/settings.md
92
-
else
93
-
# Linux
94
-
# allow_archive_path_syntax
95
-
sed -i 's#'\''\\\\<archive\\\\> :: \\\\<file\\\\>'\''#\`<archive> :: <file>\`#g' docs/en/operations/settings/settings.md
96
-
# max_partitions_to_read
97
-
sed -i "s/<= 0 means unlimited/\<0 means unlimited/g" docs/en/operations/settings/settings.md
98
-
# optimize_time_filter_with_preimage
99
-
sed -i "s|toYear(col) = 2023 -> col >= '2023-01-01' AND col <= '2023-12-31'|\\\`toYear(col) = 2023 -> col >= '2023-01-01' AND col <= '2023-12-31'\\\`|g" docs/en/operations/settings/settings.md
100
-
# stop_refreshable_materialized_views_on_startup
101
-
sed -i 's@\\\\<name\\\\>@\\<name>@g' docs/en/operations/settings/settings.md
0 commit comments