Skip to content

[Doc] Generate llms.txt#71297

Merged
alvin-phoenix-ai merged 31 commits into
mainfrom
llmstxt
May 28, 2026
Merged

[Doc] Generate llms.txt#71297
alvin-phoenix-ai merged 31 commits into
mainfrom
llmstxt

Conversation

@DanRoscigno
Copy link
Copy Markdown
Contributor

@DanRoscigno DanRoscigno commented Apr 4, 2026

Why I'm doing:

Make the docs "LLM friendly"

What I'm doing:

Generate llms.txt

Note:

the doc build CI check will never pass on this PR as our security rules require that the package.json and yarn.lock for Docusaurus are pulled from main in CI and this PR implements changes to the build process.

Sample of llms.txt that will be produced:

# StarRocks Documentation

> StarRocks is an open-source, high-performance OLAP database for real-time analytics at scale. It supports Standard SQL, materialized views, data lakes (Iceberg, Delta Lake, Hudi), stream ingestion (Kafka, Flink), and cloud-native deployment. This documentation covers SQL reference, table design, data loading, query acceleration, administration, and release notes.


## Administration

- [Administration](/docs/administration.md)
- [Cluster Snapshot](/docs/administration/cluster_snapshot.md): This feature is supported from v3.4.2 onwards and only available on shared-data clusters.
- [Cross-cluster Data Migration Tool](/docs/administration/data_migration_tool.md): The StarRocks Cross-cluster Data Migration Tool is provided by StarRocks Community.
- [Data Recovery](/docs/administration/Data_recovery.md): Recover mistakenly deleted databases/tables/partitions.
- [HTTP Interface](/docs/administration/http_interface.md): To facilitate the maintenance of StarRocks clusters, StarRocks provides various types of operation and query interfaces.
- [Query detail API](/docs/administration/http_interface/query_detail.md): The **query detail** API returns recent query execution details that are cached in FE memory.
- [Management](/docs/administration/management.md)
- [Manage audit logs within StarRocks via AuditLoader](/docs/administration/management/audit_loader.md): StarRocks stores its audit logs in the local file **fe/log/fe.audit.log** rather than an internal database.
- [Back up and restore data](/docs/administration/management/Backup_and_restore.md): StarRocks supports backing up data as snapshots into a remote storage system and restoring the data to any StarRocks clusters.
- [Manage BE and CN Blacklist](/docs/administration/management/BE_blacklist.md): From v3.3.0 onwards, StarRocks supports the BE Blacklist feature, which allows you to forbid the usage of certain BE nodes in query execution, thereby avoiding frequent query failures or other unex...
- [BE Configuration](/docs/administration/management/BE_configuration.md): StarRocks BE configuration reference: complete list of BE parameters configurable in be.conf or via SQL.
- [BE Configuration - Logging, Server, and Metadata](/docs/administration/management/BE_parameters/log_server_meta.md): BE configuration parameters for logging, server settings, and metadata management.
- [BE Configuration - Query and Loading](/docs/administration/management/BE_parameters/query_loading.md): BE configuration parameters for query execution and data loading.
- [BE Configuration - Shared-data, Data Lake, and Others](/docs/administration/management/BE_parameters/shared_lake_other.md): BE configuration parameters for shared-data clusters, data lake integration, and miscellaneous settings.
- [BE Configuration - Statistics and Storage](/docs/administration/management/BE_parameters/stats_storage.md): BE configuration parameters for statistics collection and storage engine settings.
- [Compaction for Shared-data Clusters](/docs/administration/management/compaction.md): This topic describes how to manage compaction in StarRocks shared-data clusters.
- [Configuration](/docs/administration/management/configuration.md): Configuration parameters for FE and BE nodes.
- [Enable FQDN access](/docs/administration/management/enable_fqdn.md): Before 2.4, StarRocks supports access to FEs and BEs via IP address only.
- [Develop Static Extensions](/docs/administration/management/extensions.md): Static Extensions are StarRocks FE’s extension modules that allow you to add new features or optimize existing functionality without modifying the core code.
- [FE Configuration](/docs/administration/management/FE_configuration.md): StarRocks FE configuration reference: complete list of FE parameters configurable in fe.conf or via ADMIN SET FRONTEND CONFIG.
- [FE Configuration - Logging, Server, and Metadata](/docs/administration/management/FE_parameters/log_server_meta.md): FE configuration parameters for logging, server settings, and metadata management.
- [FE Configuration - Shared-data, Data Lake, and Others](/docs/administration/management/FE_parameters/shared_lake_other.md): FE configuration parameters for shared-data clusters, data lake integration, and miscellaneous settings.
- [FE Configuration - Statistics and Storage](/docs/administration/management/FE_parameters/stats_storage.md): FE configuration parameters for statistics collection and storage settings.
- [FE Configuration - Authentication, Query, and Loading](/docs/administration/management/FE_parameters/user_query_loading.md): FE configuration parameters for authentication, query execution, and data loading.

Sample of llms-full.txt that will be produced:

# StarRocks Documentation

> StarRocks is an open-source, high-performance OLAP database for real-time analytics at scale. It supports Standard SQL, materialized views, data lakes (Iceberg, Delta Lake, Hudi), stream ingestion (Kafka, Flink), and cloud-native deployment. This documentation covers SQL reference, table design, data loading, query acceleration, administration, and release notes.

## Administration

### Cluster Snapshot

<!-- -->

Beta feature

[Advice on use of Beta features](/docs/introduction/maturity.md)

This topic describes how to use Cluster Snapshot for disaster recovery on shared-data clusters.

This feature is supported from v3.4.2 onwards and only available on shared-data clusters.

#### Overview[](#overview "Direct link to Overview")

The fundamental idea of disaster recovery for shared-data clusters is to ensure that the full cluster state (including data and metadata) is stored in object storage. This way, if the cluster encounters a failure, it can be restored from the object storage as long as the data and metadata remain intact. Additionally, features like backups and cross-region replication offered by cloud providers can be used to achieve remote recovery and cross-region disaster recovery.

In shared-data clusters, the CN state (data) is stored in object storage, but the FE state (metadata) remains local. To ensure that object storage has all the cluster state for restoration, StarRocks now supports Cluster Snapshot for both data and metadata in object storage.

##### Workflow[](#workflow "Direct link to Workflow")

![Workflow](/assets/images/cluster_snapshot_workflow-6a61b5e029595a53a7072a54bd5c6e4f.png)

##### Terms[](#terms "Direct link to Terms")

* **Cluster snapshot**

  A cluster snapshot refers to a snapshot of the cluster state at a certain moment. It contains all the objects in the cluster, such as catalogs, databases, tables, users & privileges, loading tasks, and more. It does not include all external dependent objects, such as configuration files of external catalogs, and local UDF JAR packages.

* **Generating cluster snapshot**

  The system automatically maintains a snapshot closely following the latest cluster state. Historical snapshots will be dropped right after the latest one is created, keeping only one snapshot available all the time.

  <!-- -->

* **Cluster Restore**

  Restore the cluster from a snapshot.

<!-- -->

#### Automated cluster snapshot[](#automated-cluster-snapshot "Direct link to Automated cluster snapshot")

What type of PR is this:

  • BugFix
  • Feature
  • Enhancement
  • Refactor
  • UT
  • Doc
  • Tool

Does this PR entail a change in behavior?

  • Yes, this PR will result in a change in behavior.
  • No, this PR will not result in a change in behavior.

If yes, please specify the type of change:

  • Interface/UI changes: syntax, type conversion, expression evaluation, display information
  • Parameter changes: default values, similar parameters but with different default values
  • Policy changes: use new policy to replace old one, functionality automatically enabled
  • Feature removed
  • Miscellaneous: upgrade & downgrade compatibility, etc.

Checklist:

  • I have added test cases for my bug fix or my new feature
  • This pr needs user documentation (for new or modified features or behaviors)
    • I have added documentation for my new feature or new function
    • This pr needs auto generate documentation
  • This is a backport pr

Bugfix cherry-pick branch check:

  • I have checked the version labels which the pr will be auto-backported to the target branch
    • 4.1
    • 4.0
    • 3.5
    • 3.4

DanRoscigno and others added 12 commits March 27, 2026 09:17
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: Dan Roscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
@github-actions github-actions Bot added documentation Improvements or additions to documentation 4.1 3.5 4.0 labels Apr 4, 2026
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
@DanRoscigno DanRoscigno marked this pull request as draft April 4, 2026 14:28
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
@StarRocks StarRocks deleted a comment from github-actions Bot May 27, 2026
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
@DanRoscigno DanRoscigno marked this pull request as ready for review May 27, 2026 19:34
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
Signed-off-by: DanRoscigno <dan@roscigno.com>
@github-actions
Copy link
Copy Markdown
Contributor

[Java-Extensions Incremental Coverage Report]

pass : 0 / 0 (0%)

@github-actions
Copy link
Copy Markdown
Contributor

[FE Incremental Coverage Report]

pass : 0 / 0 (0%)

@github-actions
Copy link
Copy Markdown
Contributor

[BE Incremental Coverage Report]

pass : 0 / 0 (0%)

@DanRoscigno DanRoscigno mentioned this pull request May 28, 2026
23 tasks
@alvin-phoenix-ai alvin-phoenix-ai merged commit 67838f4 into main May 28, 2026
55 of 56 checks passed
@alvin-phoenix-ai alvin-phoenix-ai deleted the llmstxt branch May 28, 2026 16:10
@github-actions
Copy link
Copy Markdown
Contributor

@Mergifyio backport branch-4.1

@github-actions github-actions Bot removed the 4.1 label May 28, 2026
@mergify
Copy link
Copy Markdown
Contributor

mergify Bot commented May 28, 2026

backport branch-4.1

✅ Backports have been created

Details

Cherry-pick of 67838f4 has failed:

On branch mergify/bp/branch-4.1/pr-71297
Your branch is up to date with 'origin/branch-4.1'.

You are currently cherry-picking commit 67838f4264.
  (fix conflicts and run "git cherry-pick --continue")
  (use "git cherry-pick --skip" to skip this patch)
  (use "git cherry-pick --abort" to cancel the cherry-pick operation)

Changes to be committed:
	new file:   docs/.claude/rules/markdown-conventions.md
	new file:   docs/.claude/settings.json
	modified:   docs/docusaurus/docusaurus.config.js
	modified:   docs/docusaurus/package.json
	deleted:    docs/docusaurus/src/pages/markdown-page.md
	modified:   docs/docusaurus/yarn.lock
	modified:   docs/en/administration/Data_recovery.md
	modified:   docs/en/administration/Meta_recovery.md
	modified:   docs/en/administration/cluster_snapshot.md
	modified:   docs/en/administration/data_migration_tool.md
	modified:   docs/en/administration/http_interface.md
	modified:   docs/en/administration/http_interface/query_detail.md
	modified:   docs/en/administration/management/BE_blacklist.md
	modified:   docs/en/administration/management/BE_configuration.md
	modified:   docs/en/administration/management/BE_parameters/log_server_meta.md
	modified:   docs/en/administration/management/BE_parameters/query_loading.md
	modified:   docs/en/administration/management/BE_parameters/shared_lake_other.md
	modified:   docs/en/administration/management/BE_parameters/stats_storage.md
	modified:   docs/en/administration/management/Backup_and_restore.md
	modified:   docs/en/administration/management/FE_configuration.md
	modified:   docs/en/administration/management/FE_parameters/log_server_meta.md
	modified:   docs/en/administration/management/FE_parameters/shared_lake_other.md
	modified:   docs/en/administration/management/FE_parameters/stats_storage.md
	modified:   docs/en/administration/management/FE_parameters/user_query_loading.md
	modified:   docs/en/administration/management/Scale_up_down.md
	modified:   docs/en/administration/management/audit_loader.md
	modified:   docs/en/administration/management/enable_fqdn.md
	modified:   docs/en/administration/management/extensions.md
	modified:   docs/en/administration/management/graceful_exit.md
	modified:   docs/en/administration/management/logs.md
	modified:   docs/en/administration/management/monitor_manage_big_queries.md
	modified:   docs/en/administration/management/monitoring/Monitor_and_Alert.md
	modified:   docs/en/administration/management/monitoring/alert.md
	modified:   docs/en/administration/management/monitoring/metric_details/i-p.md
	modified:   docs/en/administration/management/monitoring/metric_details/q-z.md
	modified:   docs/en/administration/management/monitoring/metrics-materialized_view.md
	modified:   docs/en/administration/management/monitoring/metrics-shared-data.md
	modified:   docs/en/administration/management/proc_profile.md
	modified:   docs/en/administration/management/resource_management/Blacklist.md
	modified:   docs/en/administration/management/resource_management/Load_balance.md
	modified:   docs/en/administration/management/resource_management/Memory_management.md
	modified:   docs/en/administration/management/resource_management/Query_management.md
	modified:   docs/en/administration/management/resource_management/Replica.md
	modified:   docs/en/administration/management/resource_management/be_label.md
	modified:   docs/en/administration/management/resource_management/filemanager.md
	modified:   docs/en/administration/management/resource_management/query_queues.md
	modified:   docs/en/administration/management/resource_management/resource_group.md
	modified:   docs/en/administration/management/resource_management/spill_to_disk.md
	modified:   docs/en/administration/management/timezone.md
	modified:   docs/en/administration/sql_digest.md
	modified:   docs/en/administration/stargo.md
	modified:   docs/en/administration/user_privs/authentication/jwt_authentication.md
	modified:   docs/en/administration/user_privs/authentication/ldap_authentication.md
	modified:   docs/en/administration/user_privs/authentication/native_authentication.md
	modified:   docs/en/administration/user_privs/authentication/oauth2_authentication.md
	modified:   docs/en/administration/user_privs/authentication/security_integration.md
	modified:   docs/en/administration/user_privs/authorization/User_privilege.md
	modified:   docs/en/administration/user_privs/authorization/built_in_roles.md
	modified:   docs/en/administration/user_privs/authorization/privilege_faq.md
	modified:   docs/en/administration/user_privs/authorization/privilege_item.md
	modified:   docs/en/administration/user_privs/authorization/ranger_plugin.md
	modified:   docs/en/administration/user_privs/authorization/user_privs.md
	modified:   docs/en/administration/user_privs/group_provider.md
	modified:   docs/en/administration/user_privs/ssl_authentication.md
	modified:   docs/en/benchmarking/SSB_Benchmarking.md
	modified:   docs/en/benchmarking/TPC-H_Benchmarking.md
	modified:   docs/en/benchmarking/TPC_DS_Benchmark.md
	modified:   docs/en/benchmarking/tpc_ds_99_sql.md
	modified:   docs/en/best_practices/audit_log_resource_group.md
	modified:   docs/en/best_practices/authentication_authorization.md
	modified:   docs/en/best_practices/bucketing.md
	modified:   docs/en/best_practices/fe_memory_troubleshooting.md
	modified:   docs/en/best_practices/overview.md
	modified:   docs/en/best_practices/primarykey_table.md
	modified:   docs/en/best_practices/query_tuning/query_hint.md
	modified:   docs/en/best_practices/query_tuning/query_plan_intro.md
	modified:   docs/en/best_practices/query_tuning/query_planning.md
	modified:   docs/en/best_practices/query_tuning/query_profile_operator_metrics.md
	modified:   docs/en/best_practices/query_tuning/query_profile_overview.md
	modified:   docs/en/best_practices/query_tuning/query_profile_text_based_analysis.md
	modified:   docs/en/best_practices/query_tuning/query_profile_tuning_recipes.md
	modified:   docs/en/best_practices/query_tuning/schema_tuning.md
	modified:   docs/en/best_practices/table_clustering.md
	modified:   docs/en/data_source/External_table.md
	modified:   docs/en/data_source/block_cache_warmup.md
	modified:   docs/en/data_source/catalog/catalog_overview.md
	modified:   docs/en/data_source/catalog/default_catalog.md
	modified:   docs/en/data_source/catalog/elasticsearch_catalog.md
	modified:   docs/en/data_source/catalog/hive_catalog.md
	modified:   docs/en/data_source/catalog/hudi_catalog.md
	modified:   docs/en/data_source/catalog/iceberg/DDL.md
	modified:   docs/en/data_source/catalog/iceberg/DML.md
	modified:   docs/en/data_source/catalog/iceberg/iceberg_catalog.md
	modified:   docs/en/data_source/catalog/iceberg/iceberg_meta_table.md
	modified:   docs/en/data_source/catalog/iceberg/iceberg_rest_s3.md
	modified:   docs/en/data_source/catalog/iceberg/iceberg_rest_security.md
	modified:   docs/en/data_source/catalog/iceberg/iceberg_timetravel.md
	modified:   docs/en/data_source/catalog/iceberg/procedures.md
	modified:   docs/en/data_source/catalog/jdbc_catalog.md
	modified:   docs/en/data_source/catalog/kudu_catalog.md
	modified:   docs/en/data_source/catalog/maxcompute_catalog.md
	modified:   docs/en/data_source/catalog/paimon_catalog.md
	modified:   docs/en/data_source/catalog/query_external_data.md
	modified:   docs/en/data_source/catalog/unified_catalog.md
	modified:   docs/en/data_source/data_cache.md
	modified:   docs/en/data_source/data_cache_observe.md
	modified:   docs/en/data_source/data_cache_troubleshooting.md
	modified:   docs/en/data_source/datalake_faq.md
	modified:   docs/en/data_source/feature-support-data-lake-analytics.md
	modified:   docs/en/data_source/file_external_table.md
	modified:   docs/en/deployment/deploy_manually.md
	modified:   docs/en/deployment/deploy_shared_data_manually.md
	modified:   docs/en/deployment/deployment_overview.md
	modified:   docs/en/deployment/deployment_prerequisites.md
	modified:   docs/en/deployment/downgrade.md
	modified:   docs/en/deployment/environment_configurations.md
	modified:   docs/en/deployment/feature-support-shared-data.md
	modified:   docs/en/deployment/helm.md
	modified:   docs/en/deployment/plan_cluster.md
	modified:   docs/en/deployment/post_deployment_setup.md
	modified:   docs/en/deployment/prepare_deployment_files.md
	modified:   docs/en/deployment/sr_operator.md
	modified:   docs/en/deployment/upgrade.md
	modified:   docs/en/developers/How_to_Contribute.md
	modified:   docs/en/developers/build-starrocks/Build_in_docker.md
	modified:   docs/en/developers/build-starrocks/build_starrocks_on_ubuntu.md
	modified:   docs/en/developers/build-starrocks/handbook.md
	modified:   docs/en/developers/code-style-guides/protobuf-guides.md
	modified:   docs/en/developers/code-style-guides/restful-api-standard.md
	modified:   docs/en/developers/code-style-guides/thrift-guides.md
	modified:   docs/en/developers/debuginfo.md
	modified:   docs/en/developers/development-environment/IDEA.md
	modified:   docs/en/developers/development-environment/dev-env-setup.md
	modified:   docs/en/developers/development-environment/ide-setup.md
	modified:   docs/en/developers/jemalloc_heap_profile.md
	modified:   docs/en/developers/mac-compile-run-test.md
	modified:   docs/en/developers/trace-tools/Trace.md
	modified:   docs/en/developers/trace-tools/query_trace_profile.md
	modified:   docs/en/developers/type_checker_xml_configuration.md
	modified:   docs/en/developers/versions.md
	modified:   docs/en/ecosystem_release/flink_connector.md
	modified:   docs/en/ecosystem_release/kafka_connector.md
	modified:   docs/en/ecosystem_release/spark_connector.md
	modified:   docs/en/ecosystem_release/starrocks-kubernetes-operator.md
	modified:   docs/en/faq/Deploy_faq.md
	modified:   docs/en/faq/Dump_query.md
	modified:   docs/en/faq/Exporting_faq.md
	modified:   docs/en/faq/Others.md
	modified:   docs/en/faq/Sql_faq.md
	modified:   docs/en/faq/fe_mem_faq.md
	modified:   docs/en/faq/loading/Broker_load_faq.md
	modified:   docs/en/faq/loading/DataX_faq.md
	modified:   docs/en/faq/loading/Flink_connector_faq.md
	modified:   docs/en/faq/loading/Insert_into_faq.md
	modified:   docs/en/faq/loading/Loading_faq.md
	modified:   docs/en/faq/loading/Routine_load_faq.md
	modified:   docs/en/faq/loading/Stream_load_faq.md
	modified:   docs/en/faq/loading/synchronize_mysql_into_sr.md
	modified:   docs/en/faq/operation_maintenance_faq.md
	modified:   docs/en/faq/resource_isolation_faq.md
	modified:   docs/en/faq/shared_data_faq.md
	modified:   docs/en/faq/starrocks-wildfly-native-ssl-fix.md
	modified:   docs/en/faq/table_design_faq.md
	modified:   docs/en/integrations/BI_integrations/FineBI.md
	modified:   docs/en/integrations/BI_integrations/Hex.md
	modified:   docs/en/integrations/BI_integrations/Metabase.md
	modified:   docs/en/integrations/BI_integrations/Querybook.md
	modified:   docs/en/integrations/BI_integrations/QuickBI.md
	modified:   docs/en/integrations/BI_integrations/Rill.md
	modified:   docs/en/integrations/BI_integrations/Superset.md
	modified:   docs/en/integrations/BI_integrations/Tableau_Desktop.md
	modified:   docs/en/integrations/IDE_integrations/DBeaver.md
	modified:   docs/en/integrations/IDE_integrations/DataGrip.md
	modified:   docs/en/integrations/IDE_integrations/Dataphin.md
	modified:   docs/en/integrations/IDE_integrations/marimo.md
	modified:   docs/en/integrations/JDBC_driver.md
	modified:   docs/en/integrations/airflow.md
	modified:   docs/en/integrations/dbt.md
	modified:   docs/en/integrations/loading_tools/CloudCanal.md
	modified:   docs/en/integrations/loading_tools/DataX-starrocks-writer.md
	modified:   docs/en/integrations/loading_tools/SMT.md
	modified:   docs/en/integrations/streaming/rising_wave.md
	modified:   docs/en/integrations/superset_support.md
	modified:   docs/en/introduction/Architecture.md
	modified:   docs/en/introduction/Features.md
	modified:   docs/en/introduction/StarRocks_intro.md
	modified:   docs/en/introduction/feature_difference.md
	modified:   docs/en/introduction/maturity.md
	modified:   docs/en/introduction/versioning.md
	modified:   docs/en/introduction/what_is_starrocks.md
	modified:   docs/en/loading/BrokerLoad.md
	modified:   docs/en/loading/Etl_in_loading.md
	modified:   docs/en/loading/Flink-connector-starrocks.md
	modified:   docs/en/loading/Flink_cdc_load.md
	modified:   docs/en/loading/InsertInto.md
	modified:   docs/en/loading/Json_loading.md
	modified:   docs/en/loading/Kafka-connector-starrocks.md
	modified:   docs/en/loading/Load_to_Primary_Key_tables.md
	modified:   docs/en/loading/Loading_intro.md
	modified:   docs/en/loading/RoutineLoad.md
	modified:   docs/en/loading/SQL_transaction.md
	modified:   docs/en/loading/Spark-connector-starrocks.md
	modified:   docs/en/loading/SparkLoad.md
	modified:   docs/en/loading/StreamLoad.md
	modified:   docs/en/loading/Stream_Load_transaction_interface.md
	modified:   docs/en/loading/azure.md
	modified:   docs/en/loading/gcs.md
	modified:   docs/en/loading/hdfs_load.md
	modified:   docs/en/loading/load_concept/strict_mode.md
	modified:   docs/en/loading/load_from_pulsar.md
	modified:   docs/en/loading/loading_introduction/feature-support-loading-and-unloading.md
	modified:   docs/en/loading/loading_introduction/loading_concepts.md
	modified:   docs/en/loading/loading_introduction/loading_considerations.md
	modified:   docs/en/loading/loading_introduction/troubleshooting_loading.md
	modified:   docs/en/loading/loading_tools.md
	modified:   docs/en/loading/minio.md
	modified:   docs/en/loading/s3.md
	modified:   docs/en/release_notes/release-1.19.md
	modified:   docs/en/release_notes/release-2.0.md
	modified:   docs/en/release_notes/release-2.1.md
	modified:   docs/en/release_notes/release-2.2.md
	modified:   docs/en/release_notes/release-2.3.md
	modified:   docs/en/release_notes/release-2.4.md
	modified:   docs/en/release_notes/release-2.5.md
	modified:   docs/en/release_notes/release-3.0.md
	modified:   docs/en/release_notes/release-3.1.md
	modified:   docs/en/release_notes/release-3.2.md
	modified:   docs/en/release_notes/release-3.3.md
	modified:   docs/en/release_notes/release-3.4.md
	modified:   docs/en/release_notes/release-3.5.md
	modified:   docs/en/release_notes/release-4.0.md
	modified:   docs/en/release_notes/release-4.1.md
	modified:   docs/en/sql-reference/Error_code.md
	modified:   docs/en/sql-reference/System_limit.md
	modified:   docs/en/sql-reference/System_variable.md
	modified:   docs/en/sql-reference/aws_iam_policies.md
	modified:   docs/en/sql-reference/data-types/README.md
	modified:   docs/en/sql-reference/data-types/date-types/DATE.md
	modified:   docs/en/sql-reference/data-types/date-types/DATETIME.md
	modified:   docs/en/sql-reference/data-types/numeric/BIGINT.md
	modified:   docs/en/sql-reference/data-types/numeric/BOOLEAN.md
	modified:   docs/en/sql-reference/data-types/numeric/DECIMAL.md
	modified:   docs/en/sql-reference/data-types/numeric/DOUBLE.md
	modified:   docs/en/sql-reference/data-types/numeric/FLOAT.md
	modified:   docs/en/sql-reference/data-types/numeric/INT.md
	modified:   docs/en/sql-reference/data-types/numeric/LARGEINT.md
	modified:   docs/en/sql-reference/data-types/numeric/SMALLINT.md
	modified:   docs/en/sql-reference/data-types/numeric/TINYINT.md
	modified:   docs/en/sql-reference/data-types/other-data-types/BITMAP.md
	modified:   docs/en/sql-reference/data-types/other-data-types/HLL.md
	modified:   docs/en/sql-reference/data-types/semi_structured/Array.md
	modified:   docs/en/sql-reference/data-types/semi_structured/JSON.md
	modified:   docs/en/sql-reference/data-types/semi_structured/Map.md
	modified:   docs/en/sql-reference/data-types/semi_structured/STRUCT.md
	modified:   docs/en/sql-reference/data-types/semi_structured/VARIANT.md
	modified:   docs/en/sql-reference/data-types/string-type/BINARY.md
	modified:   docs/en/sql-reference/data-types/string-type/CHAR.md
	modified:   docs/en/sql-reference/data-types/string-type/STRING.md
	modified:   docs/en/sql-reference/data-types/string-type/VARCHAR.md
	modified:   docs/en/sql-reference/http_sql_api.md
	modified:   docs/en/sql-reference/information_schema/analyze_status.md
	modified:   docs/en/sql-reference/information_schema/applicable_roles.md
	modified:   docs/en/sql-reference/information_schema/be_bvars.md
	modified:   docs/en/sql-reference/information_schema/be_cloud_native_compactions.md
	modified:   docs/en/sql-reference/information_schema/be_compactions.md
	modified:   docs/en/sql-reference/information_schema/be_configs.md
	modified:   docs/en/sql-reference/information_schema/be_logs.md
	modified:   docs/en/sql-reference/information_schema/be_metrics.md
	modified:   docs/en/sql-reference/information_schema/be_tablets.md
	modified:   docs/en/sql-reference/information_schema/be_threads.md
	modified:   docs/en/sql-reference/information_schema/be_txns.md
	modified:   docs/en/sql-reference/information_schema/character_sets.md
	modified:   docs/en/sql-reference/information_schema/collations.md
	modified:   docs/en/sql-reference/information_schema/column_privileges.md
	modified:   docs/en/sql-reference/information_schema/column_stats_usage.md
	modified:   docs/en/sql-reference/information_schema/columns.md
	modified:   docs/en/sql-reference/information_schema/engines.md
	modified:   docs/en/sql-reference/information_schema/events.md
	modified:   docs/en/sql-reference/information_schema/fe_metrics.md
	modified:   docs/en/sql-reference/information_schema/fe_tablet_schedules.md
	modified:   docs/en/sql-reference/information_schema/fe_threads.md
	modified:   docs/en/sql-reference/information_schema/global_variables.md
	modified:   docs/en/sql-reference/information_schema/information_schema.md
	modified:   docs/en/sql-reference/information_schema/key_column_usage.md
	modified:   docs/en/sql-reference/information_schema/load_tracking_logs.md
	modified:   docs/en/sql-reference/information_schema/loads.md
	modified:   docs/en/sql-reference/information_schema/materialized_views.md
	modified:   docs/en/sql-reference/information_schema/partitions.md
	modified:   docs/en/sql-reference/information_schema/partitions_meta.md
	modified:   docs/en/sql-reference/information_schema/pipe_files.md
	modified:   docs/en/sql-reference/information_schema/pipes.md
	modified:   docs/en/sql-reference/information_schema/recyclebin_catalogs.md
	modified:   docs/en/sql-reference/information_schema/referential_constraints.md
	modified:   docs/en/sql-reference/information_schema/routine_load_jobs.md
	modified:   docs/en/sql-reference/information_schema/routines.md
	modified:   docs/en/sql-reference/information_schema/schema_privileges.md
	modified:   docs/en/sql-reference/information_schema/schemata.md
	modified:   docs/en/sql-reference/information_schema/session_variables.md
	modified:   docs/en/sql-reference/information_schema/statistics.md
	modified:   docs/en/sql-reference/information_schema/stream_loads.md
	modified:   docs/en/sql-reference/information_schema/table_constraints.md
	modified:   docs/en/sql-reference/information_schema/table_privileges.md
	modified:   docs/en/sql-reference/information_schema/tables.md
	modified:   docs/en/sql-reference/information_schema/tables_config.md
	modified:   docs/en/sql-reference/information_schema/task_runs.md
	modified:   docs/en/sql-reference/information_schema/tasks.md
	modified:   docs/en/sql-reference/information_schema/triggers.md
	modified:   docs/en/sql-reference/information_schema/user_privileges.md
	modified:   docs/en/sql-reference/information_schema/verbose_session_variables.md
	modified:   docs/en/sql-reference/information_schema/views.md
	modified:   docs/en/sql-reference/information_schema/warehouse_metrics.md
	modified:   docs/en/sql-reference/information_schema/warehouse_queries.md
	modified:   docs/en/sql-reference/sql-functions/JAVA_UDF.md
	modified:   docs/en/sql-reference/sql-functions/Lambda_expression.md
	modified:   docs/en/sql-reference/sql-functions/Python_UDF.md
	modified:   docs/en/sql-reference/sql-functions/README.md
	modified:   docs/en/sql-reference/sql-functions/SQL_UDF.md
	modified:   docs/en/sql-reference/sql-functions/Window_function.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/any_value.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/approx_count_distinct.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/approx_top_k.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/avg.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/bitmap.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/bool_or.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/corr.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/count.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/count_if.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/covar_pop.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/covar_samp.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/ds_hll_accumulate.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/ds_hll_combine.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/ds_hll_count_distinct.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/ds_hll_estimate.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/ds_theta_count_distinct.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/group_concat.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/grouping.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/grouping_id.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/hll_raw_agg.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/hll_union.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/hll_union_agg.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/mann_whitney_u_test.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/max.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/max_by.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/min.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/min_by.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/multi_distinct_count.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/multi_distinct_sum.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/percentile_approx.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/percentile_approx_weight.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/percentile_cont.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/percentile_disc.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/percentile_disc_lc.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/retention.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/std.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/stddev.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/stddev_samp.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/sum.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/sum_map.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/var_samp.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/variance.md
	modified:   docs/en/sql-reference/sql-functions/aggregate-functions/window_funnel.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/all_match.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/any_match.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_agg.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_append.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_avg.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_concat.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_contains.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_contains_all.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_contains_seq.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_cum_sum.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_difference.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_distinct.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_filter.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_flatten.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_generate.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_intersect.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_join.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_length.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_map.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_max.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_min.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_position.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_remove.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_repeat.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_slice.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_sort.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_sortby.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_sum.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_to_bitmap.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_top_n.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/array_unique_agg.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/arrays_overlap.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/arrays_zip.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/cardinality.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/element_at.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/reverse.md
	modified:   docs/en/sql-reference/sql-functions/array-functions/unnest.md
	modified:   docs/en/sql-reference/sql-functions/binary-functions/from_binary.md
	modified:   docs/en/sql-reference/sql-functions/binary-functions/to_binary.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bit_shift_left.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bit_shift_right.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bit_shift_right_logical.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bitand.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bitnot.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bitor.md
	modified:   docs/en/sql-reference/sql-functions/bit-functions/bitxor.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/base64_to_bitmap.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_agg.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_and.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_andnot.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_contains.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_count.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_empty.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_from_binary.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_from_string.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_has_any.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_hash.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_hash64.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_intersect.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_max.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_min.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_or.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_remove.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_subset_in_range.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_subset_limit.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_to_array.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_to_base64.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_to_binary.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_to_string.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_union.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_union_count.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_union_int.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/bitmap_xor.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/intersect_count.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/sub_bitmap.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/subdivide_bitmap.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/to_bitmap.md
	modified:   docs/en/sql-reference/sql-functions/bitmap-functions/unnest_bitmap.md
	modified:   docs/en/sql-reference/sql-functions/cast.md
	modified:   docs/en/sql-reference/sql-functions/condition-functions/case_when.md
	modified:   docs/en/sql-reference/sql-functions/condition-functions/coalesce.md
	modified:   docs/en/sql-reference/sql-functions/condition-functions/if.md
	modified:   docs/en/sql-reference/sql-functions/condition-functions/ifnull.md
	modified:   docs/en/sql-reference/sql-functions/condition-functions/nullif.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/aes_decrypt.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/aes_encrypt.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/base64_decode_binary.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/base64_decode_string.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/from_base64.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/md5.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/md5sum.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/md5sum_numeric.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/sha2.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/sm3.md
	modified:   docs/en/sql-reference/sql-functions/crytographic-functions/to_base64.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/add_months.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/adddate.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/convert_tz.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/curdate.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/current_timestamp.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/current_timezone.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/curtime.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date_format.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date_slice.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/date_trunc.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/datediff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/day.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/day_of_week_iso.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/dayname.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/dayofmonth.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/dayofweek.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/dayofyear.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/days_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/days_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/days_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/from_days.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/from_unixtime.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/hour.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/hours_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/hours_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/hours_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/jodatime_format.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/last_day.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/makedate.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/microseconds_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/microseconds_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/milliseconds_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/minute.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/minutes_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/minutes_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/minutes_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/month.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/monthname.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/months_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/months_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/months_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/next_day.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/now.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/previous_day.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/quarter.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/sec_to_time.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/second.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/seconds_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/seconds_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/seconds_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/str2date.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/str_to_date.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/str_to_jodatime.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/time_format.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/time_slice.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/time_to_sec.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/timediff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/timestamp.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/timestampadd.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/timestampdiff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_date.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_datetime.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_datetime_ntz.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_days.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_iso8601.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_tera_date.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/to_tera_timestamp.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/unix_timestamp.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/utc_time.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/utc_timestamp.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/week.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/week_iso.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/weekday.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/weekofyear.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/weeks_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/weeks_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/weeks_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/year.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/years_add.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/years_diff.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/years_sub.md
	modified:   docs/en/sql-reference/sql-functions/date-time-functions/yearweek.md
	modified:   docs/en/sql-reference/sql-functions/dict-functions/dict_mapping.md
	modified:   docs/en/sql-reference/sql-functions/dict-functions/dictionary_get.md
	modified:   docs/en/sql-reference/sql-functions/hash-functions/murmur_hash3_32.md
	modified:   docs/en/sql-reference/sql-functions/hash-functions/xx_hash3_128.md
	modified:   docs/en/sql-reference/sql-functions/hash-functions/xx_hash3_64.md
	modified:   docs/en/sql-reference/sql-functions/hive_bitmap_udf.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-constructor-functions/json_array.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-constructor-functions/json_object.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-constructor-functions/parse_json.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-operators.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/arrow-function.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/cast.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/get_json_bool.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/get_json_double.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/get_json_int.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/get_json_string.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_contains.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_each.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_exists.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_keys.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_length.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_pretty.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_query.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_remove.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_set.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/json_string.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/json-query-and-processing-functions/to_json.md
	modified:   docs/en/sql-reference/sql-functions/json-functions/overview-of-json-functions-and-operators.md
	modified:   docs/en/sql-reference/sql-functions/like-predicate-functions/like.md
	modified:   docs/en/sql-reference/sql-functions/like-predicate-functions/regexp.md
	modified:   docs/en/sql-reference/sql-functions/like-predicate-functions/regexp_count.md
	modified:   docs/en/sql-reference/sql-functions/like-predicate-functions/regexp_extract.md
	modified:   docs/en/sql-reference/sql-functions/like-predicate-functions/regexp_extract_all.md
	modified:   docs/en/sql-reference/sql-functions/like-predicate-functions/regexp_replace.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/cardinality.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/distinct_map_keys.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/element_at.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_apply.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_concat.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_filter.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_from_arrays.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_keys.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_size.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/map_values.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/transform_keys.md
	modified:   docs/en/sql-reference/sql-functions/map-functions/transform_values.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/abs.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/acos.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/asin.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/atan.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/atan2.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/bin.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/cbrt.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/ceil.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/ceiling.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/conv.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/cos.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/cos_similarity.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/cos_similarity_norm.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/cosh.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/cot.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/degrees.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/divide.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/e.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/exp.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/floor.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/fmod.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/greatest.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/least.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/ln.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/log.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/log10.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/log2.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/mod.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/multiply.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/negative.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/pi.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/pmod.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/positive.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/pow.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/radians.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/rand.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/round.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/sign.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/sin.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/sinh.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/sqrt.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/square.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/tan.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/tanh.md
	modified:   docs/en/sql-reference/sql-functions/math-functions/truncate.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/get_query_dump.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/get_query_dump_from_query_id.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_all_pipes.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_hive_part_info.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_memory.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_memory_detail.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_mv_meta.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_mv_plan.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_mv_refresh_info.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_mv_relationships.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_related_mv.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_table_partition_info.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/inspect_task_runs.md
	modified:   docs/en/sql-reference/sql-functions/meta-functions/lookup_string.md
	modified:   docs/en/sql-reference/sql-functions/percentile-functions/percentile_approx_raw.md
	modified:   docs/en/sql-reference/sql-functions/percentile-functions/percentile_empty.md
	modified:   docs/en/sql-reference/sql-functions/percentile-functions/percentile_hash.md
	modified:   docs/en/sql-reference/sql-functions/percentile-functions/percentile_union.md
	modified:   docs/en/sql-reference/sql-functions/scalar-functions/hll_cardinality.md
	modified:   docs/en/sql-reference/sql-functions/scalar-functions/hll_empty.md
	modified:   docs/en/sql-reference/sql-functions/scalar-functions/hll_hash.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_astext.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_circle.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_contains.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_distance_sphere.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_geometryfromtext.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_linefromtext.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_point.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_polygon.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_x.md
	modified:   docs/en/sql-reference/sql-functions/spatial-functions/st_y.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/append_trailing_char_if_absent.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/ascii.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/char.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/char_length.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/character_length.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/concat.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/concat_ws.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/crc32.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/ends_with.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/field.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/find_in_set.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/format_bytes.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/group_concat.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/hex.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/hex_decode_binary.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/hex_decode_string.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/inet_aton.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/initcap.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/instr.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/lcase.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/left.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/length.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/locate.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/lower.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/lpad.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/ltrim.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/money_format.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/ngram_search.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/null_or_empty.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/parse_url.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/regexp_split.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/repeat.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/replace.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/reverse.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/right.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/rpad.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/rtrim.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/space.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/split.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/split_part.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/starts_with.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/str_to_map.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/strcmp.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/strleft.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/strpos.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/strright.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/substring.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/substring_index.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/tokenize.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/translate.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/trim.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/ucase.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/unhex.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/upper.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/url_decode.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/url_encode.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/url_extract_host.md
	modified:   docs/en/sql-reference/sql-functions/string-functions/url_extract_parameter.md
	modified:   docs/en/sql-reference/sql-functions/struct-functions/named_struct.md
	modified:   docs/en/sql-reference/sql-functions/struct-functions/row.md
	modified:   docs/en/sql-reference/sql-functions/table-functions/files.md
	modified:   docs/en/sql-reference/sql-functions/table-functions/generate_series.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/bar.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/catalog.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/column_size_functions.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/current_role.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/current_version.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/current_warehouse.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/database.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/encode_sort_key.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/equiwidth_bucket.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/get_query_profile.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/host_name.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/is_role_in_session.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/isnotnull.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/isnull.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/last_query_id.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/sleep.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/uuid.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/uuid_numeric.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/uuid_v7_numeric.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/uuidv7.md
	modified:   docs/en/sql-reference/sql-functions/utility-functions/version.md
	modified:   docs/en/sql-reference/sql-functions/variant-functions/get_variant.md
	modified:   docs/en/sql-reference/sql-functions/variant-functions/variant_query.md
	modified:   docs/en/sql-reference/sql-functions/variant-functions/variant_typeof.md
	modified:   docs/en/sql-reference/sql-statements/Catalog/CREATE_EXTERNAL_CATALOG.md
	modified:   docs/en/sql-reference/sql-statements/Catalog/DROP_CATALOG.md
	modified:   docs/en/sql-reference/sql-statements/Catalog/SET_CATALOG.md
	modified:   docs/en/sql-reference/sql-statements/Catalog/SHOW_CATALOGS.md
	modified:   docs/en/sql-reference/sql-statements/Catalog/SHOW_CREATE_CATALOG.md
	modified:   docs/en/sql-reference/sql-statements/Database/ALTER_DATABASE.md
	modified:   docs/en/sql-reference/sql-statements/Database/CREATE_DATABASE.md
	modified:   docs/en/sql-reference/sql-statements/Database/DROP_DATABASE.md
	modified:   docs/en/sql-reference/sql-statements/Database/SHOW_CREATE_DATABASE.md
	modified:   docs/en/sql-reference/sql-statements/Database/SHOW_DATA.md
	modified:   docs/en/sql-reference/sql-statements/Database/SHOW_DATABASES.md
	modified:   docs/en/sql-reference/sql-statements/Database/USE.md
	modified:   docs/en/sql-reference/sql-statements/Function/CREATE_FUNCTION.md
	modified:   docs/en/sql-reference/sql-statements/Function/DROP_FUNCTION.md
	modified:   docs/en/sql-reference/sql-statements/Function/SHOW_FUNCTIONS.md
	modified:   docs/en/sql-reference/sql-statements/Resource/ALTER_RESOURCE.md
	modified:   docs/en/sql-reference/sql-statements/Resource/CREATE_RESOURCE.md
	modified:   docs/en/sql-reference/sql-statements/Resource/DROP_RESOURCE.md
	modified:   docs/en/sql-reference/sql-statements/Resource/SHOW_RESOURCES.md
	modified:   docs/en/sql-reference/sql-statements/TRANSLATE_TRINO.md
	modified:   docs/en/sql-reference/sql-statements/View/ALTER_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/View/CREATE_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/View/DROP_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/View/SHOW_CREATE_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/account-management/ALTER_USER.md
	modified:   docs/en/sql-reference/sql-statements/account-management/CREATE_ROLE.md
	modified:   docs/en/sql-reference/sql-statements/account-management/CREATE_USER.md
	modified:   docs/en/sql-reference/sql-statements/account-management/DROP_ROLE.md
	modified:   docs/en/sql-reference/sql-statements/account-management/DROP_USER.md
	modified:   docs/en/sql-reference/sql-statements/account-management/EXECUTE_AS.md
	modified:   docs/en/sql-reference/sql-statements/account-management/GRANT.md
	modified:   docs/en/sql-reference/sql-statements/account-management/REVOKE.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SET_DEFAULT_ROLE.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SET_PASSWORD.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SET_ROLE.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SHOW_AUTHENTICATION.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SHOW_GRANTS.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SHOW_PROPERTY.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SHOW_ROLES.md
	modified:   docs/en/sql-reference/sql-statements/account-management/SHOW_USERS.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/BACKUP.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/CANCEL_BACKUP.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/CANCEL_RESTORE.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/CREATE_REPOSITORY.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/DROP_REPOSITORY.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/RECOVER.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/RESTORE.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/SHOW_BACKUP.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/SHOW_REPOSITORIES.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/SHOW_RESTORE.md
	modified:   docs/en/sql-reference/sql-statements/backup_restore/SHOW_SNAPSHOT.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/ANALYZE_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/CREATE_ANALYZE.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/DROP_ANALYZE.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/DROP_STATS.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/KILL_ANALYZE.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/SHOW_ANALYZE_JOB.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/SHOW_ANALYZE_STATUS.md
	modified:   docs/en/sql-reference/sql-statements/cbo_stats/SHOW_META.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/config_vars/ADMIN_SET_CONFIG.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/config_vars/ADMIN_SHOW_CONFIG.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/config_vars/REFRESH_CONNECTIONS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/config_vars/SET.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/config_vars/SHOW_VARIABLES.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/file/CREATE_FILE.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/file/DROP_FILE.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/file/SHOW_FILE.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/ADD_BACKEND_BLACKLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/ALTER_SYSTEM.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/CANCEL_DECOMMISSION.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/DELETE_BACKEND_BLACKLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/KILL.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_BACKENDS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_BACKEND_BLACKLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_BROKER.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_COMPUTE_NODES.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_FRONTENDS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_PROC.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_PROCESSLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SHOW_RUNNING_QUERIES.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/nodes_processes/SYNC.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plan_profile/ANALYZE_PROFILE.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plan_profile/EXPLAIN.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plan_profile/EXPLAIN_ANALYZE.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plan_profile/SHOW_PROFILELIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plugin/INSTALL_PLUGIN.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plugin/SHOW_PLUGINS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/plugin/UNINSTALL_PLUGIN.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/resource_group/ALTER_RESOURCE_GROUP.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/resource_group/CREATE_RESOURCE_GROUP.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/resource_group/DROP_RESOURCE_GROUP.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/resource_group/SHOW_RESOURCE_GROUP.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/resource_group/SHOW_USAGE_RESOURCE_GROUPS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/sql_blacklist/ADD_SQLBLACKLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/sql_blacklist/DELETE_SQLBLACKLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/sql_blacklist/SHOW_SQLBLACKLIST.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/storage_volume/ALTER_STORAGE_VOLUME.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/storage_volume/CREATE_STORAGE_VOLUME.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/storage_volume/DESC_STORAGE_VOLUME.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/storage_volume/DROP_STORAGE_VOLUME.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/storage_volume/SET_DEFAULT_STORAGE_VOLUME.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/storage_volume/SHOW_STORAGE_VOLUMES.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_CANCEL_REPAIR.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_CHECK_TABLET.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_REPAIR.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_SET_PARTITION_VERSION.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_SET_REPLICA_STATUS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_SHOW_REPLICA_DISTRIBUTION.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_SHOW_REPLICA_STATUS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_SHOW_TABLET_STATUS.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/ADMIN_SKIP_COMMITTED_TRANSACTION.md
	modified:   docs/en/sql-reference/sql-statements/cluster-management/tablet_replica/SHOW_TABLE_STATUS.md
	modified:   docs/en/sql-reference/sql-statements/dictionary/CANCEL_REFRESH_DICTIONARY.md
	modified:   docs/en/sql-reference/sql-statements/dictionary/CREATE_DICTIONARY.md
	modified:   docs/en/sql-reference/sql-statements/dictionary/DROP_DICTIONARY.md
	modified:   docs/en/sql-reference/sql-statements/dictionary/REFRESH_DICTIONARY.md
	modified:   docs/en/sql-reference/sql-statements/dictionary/SHOW_DICTIONARY.md
	modified:   docs/en/sql-reference/sql-statements/generated_columns.md
	modified:   docs/en/sql-reference/sql-statements/keywords.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/ALTER_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/BROKER_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/CANCEL_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/ETL/ALTER_TASK.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/ETL/DROP_TASK.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/ETL/SUBMIT_TASK.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/INSERT.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/SHOW_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/SHOW_TRANSACTION.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/SPARK_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/STREAM_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/pipe/ALTER_PIPE.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/pipe/CREATE_PIPE.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/pipe/DROP_PIPE.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/pipe/RETRY_FILE.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/pipe/SHOW_PIPES.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/pipe/SUSPEND_or_RESUME_PIPE.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/ALTER_ROUTINE_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/CREATE_ROUTINE_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/PAUSE_ROUTINE_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/RESUME_ROUTINE_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/SHOW_ROUTINE_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/SHOW_ROUTINE_LOAD_TASK.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/routine_load/STOP_ROUTINE_LOAD.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/unloading/CANCEL_EXPORT.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/unloading/EXPORT.md
	modified:   docs/en/sql-reference/sql-statements/loading_unloading/unloading/SHOW_EXPORT.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/ALTER_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/CANCEL_REFRESH_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/CREATE_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/DROP_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/REFRESH_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/SHOW_ALTER_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/SHOW_CREATE_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/materialized_view/SHOW_MATERIALIZED_VIEW.md
	modified:   docs/en/sql-reference/sql-statements/prepared_statement.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/CANCEL_ALTER_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/CREATE_INDEX.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/CREATE_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/CREATE_TABLE_AS_SELECT.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/CREATE_TABLE_LIKE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/DELETE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/DESCRIBE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/DROP_INDEX.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/DROP_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/REFRESH_EXTERNAL_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_CTE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_DISTINCT.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_EXCEPT_MINUS.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_EXCLUDE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_GROUP_BY.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_HAVING.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_INTERSECT.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_JOIN.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_LIMIT.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_OFFSET.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_ORDER_BY.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_PIVOT.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_UNION.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_WHERE_operator.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_alias.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SELECT/SELECT_subquery.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_ALTER.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_CREATE_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_DELETE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_DYNAMIC_PARTITION_TABLES.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_FULL_COLUMNS.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_INDEX.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_PARTITIONS.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_TABLES.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/SHOW_TABLET.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/TRUNCATE_TABLE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/UPDATE.md
	modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/auto_increment.md
	modified:   docs/en/sql-reference/sys/fe_locks.md
	modified:   docs/en/sql-reference/sys/grants_to_roles.md
	modified:   docs/en/sql-reference/sys/grants_to_users.md
	modified:   docs/en/sql-reference/sys/object_dependencies.md
	modified:   docs/en/sql-reference/sys/policy_references.md
	modified:   docs/en/sql-reference/sys/role_edges.md
	modified:   docs/en/sql-reference/sys/sys.md
	modified:   docs/en/sql-reference/user_defined_variables.md
	modified:   docs/en/table_design/StarRocks_table_design.md
	modified:   docs/en/table_design/data_compression.md
	modified:   docs/en/table_design/data_distribution/Temporary_partition.md
	modified:   docs/en/table_design/data_distribution/dynamic_partitioning.md
	modified:   docs/en/table_design/data_distribution/feature-support-data-distribution.md
	modified:   docs/en/table_design/data_distribution/list_partitioning.md
	modified:   docs/en/table_design/hybrid_table.md
	modified:   docs/en/table_design/indexes/Bitmap_index.md
	modified:   docs/en/table_design/indexes/Bloomfilter_index.md
	modified:   docs/en/table_design/indexes/Ngram_Bloom_Filter_Index.md
	modified:   docs/en/table_design/indexes/Prefix_index_sort_key.md
	modified:   docs/en/table_design/indexes/indexes.md
	modified:   docs/en/table_design/indexes/inverted_index.md
	modified:   docs/en/table_design/indexes/vector_index.md
	modified:   docs/en/table_design/table_design.md
	modified:   docs/en/table_design/table_types/aggregate_table.md
	modified:   docs/en/table_design/table_types/duplicate_key_table.md
	modified:   docs/en/table_design/table_types/primary_key_table.md
	modified:   docs/en/table_design/table_types/table_capabilities.md
	modified:   docs/en/table_design/table_types/table_types.md
	modified:   docs/en/table_design/table_types/unique_key_table.md
	modified:   docs/en/unloading/Export.md
	modified:   docs/en/unloading/Flink_connector.md
	modified:   docs/en/unloading/Spark_connector.md
	modified:   docs/en/unloading/arrow_flight.md
	modified:   docs/en/unloading/unload_using_insert_into_files.md
	modified:   docs/en/using_starrocks/Colocate_join.md
	modified:   docs/en/using_starrocks/Cost_based_optimizer.md
	modified:   docs/en/using_starrocks/Flat_json.md
	modified:   docs/en/using_starrocks/Lateral_join.md
	modified:   docs/en/using_starrocks/Materialized_view-single_table.md
	modified:   docs/en/using_starrocks/SQL_plan_manager.md
	modified:   docs/en/using_starrocks/accelerate-cardinality-preserving-joins.md
	modified:   docs/en/using_starrocks/async_mv/Materialized_view.md
	modified:   docs/en/using_starrocks/async_mv/feature-support-asynchronous-materialized-views.md
	modified:   docs/en/using_starrocks/async_mv/materialized_view_task_run_details.md
	modified:   docs/en/using_starrocks/async_mv/mv_ref.md
	modified:   docs/en/using_starrocks/async_mv/troubleshooting_asynchronous_materialized_views.md
	modified:   docs/en/using_starrocks/async_mv/use_cases/create_partitioned_materialized_view.md
	modified:   docs/en/using_starrocks/async_mv/use_cases/data_lake_query_acceleration_with_materialized_views.md
	modified:   docs/en/using_starrocks/async_mv/use_cases/data_modeling_with_materialized_views.md
	modified:   docs/en/using_starrocks/async_mv/use_cases/query_rewrite_with_materialized_views.md
	modified:   docs/en/using_starrocks/caching/block_cache.md
	modified:   docs/en/using_starrocks/caching/query_cache.md
	modified:   docs/en/using_starrocks/distinct_values/Using_HLL.md
	modified:   docs/en/using_starrocks/distinct_values/Using_bitmap.md
	modified:   docs/en/using_starrocks/jit.md
	modified:   docs/en/using_starrocks/query_acceleration_with_auto_increment.md
	modified:   docs/en/using_starrocks/query_feedback.md
	modified:   docs/en/using_starrocks/running_queries.md
	modified:   docs/en/using_starrocks/skew_join_v2.md
	modified:   docs/en/using_starrocks/sorted_aggregate.md
	modified:   docs/zh/administration/management/monitoring/metric_details/i-p.md

Unmerged paths:
  (use "git add/rm <file>..." as appropriate to mark resolution)
	both modified:   .gitignore
	deleted by us:   AGENTS.md
	deleted by us:   docs/AGENTS.md
	both modified:   docs/en/administration/management/compaction.md
	both modified:   docs/en/best_practices/partitioning.md
	deleted by us:   docs/en/data_source/catalog/benchmark_catalog.md
	deleted by us:   docs/en/loading/loading_introduction/rejected_records.md
	deleted by us:   docs/en/sql-reference/sql-functions/aggregate-functions/min_n_max_n.md
	deleted by us:   docs/en/sql-reference/sql-functions/aggregate-functions/string_agg.md
	deleted by us:   docs/en/sql-reference/sql-functions/json-functions/is_json_scalar.md
	deleted by us:   docs/en/sql-reference/sql-functions/scalar-functions/http_request.md
	deleted by us:   docs/en/sql-reference/sql-functions/string-functions/string_agg.md
	deleted by us:   docs/en/sql-reference/sql-functions/table-functions/native_query.md
	deleted by us:   docs/en/sql-reference/sql-functions/utility-functions/materialize.md
	deleted by us:   docs/en/sql-reference/sql-statements/Function/SHOW_CREATE_FUNCTION.md
	both modified:   docs/en/sql-reference/sql-statements/table_bucket_part_index/ALTER_TABLE.md

To fix up this pull request, you can check it out locally. See documentation: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally

@mergify mergify Bot mentioned this pull request May 28, 2026
24 tasks
wanpengfei-git pushed a commit that referenced this pull request May 29, 2026
Signed-off-by: DanRoscigno <dan@roscigno.com>
Co-authored-by: Dan Roscigno <dan@roscigno.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

4.1-merged docs-maintainer documentation Improvements or additions to documentation

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants