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
Copy file name to clipboardExpand all lines: src/Core/Settings.cpp
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5896,6 +5896,9 @@ As each series represents a node in Keeper, it is recommended to have no more th
5896
5896
)", 0) \
5897
5897
DECLARE(Bool, use_hive_partitioning, true, R"(
5898
5898
When enabled, ClickHouse will detect Hive-style partitioning in path (`/name=value/`) in file-like table engines [File](../../engines/table-engines/special/file.md#hive-style-partitioning)/[S3](../../engines/table-engines/integrations/s3.md#hive-style-partitioning)/[URL](../../engines/table-engines/special/url.md#hive-style-partitioning)/[HDFS](../../engines/table-engines/integrations/hdfs.md#hive-style-partitioning)/[AzureBlobStorage](../../engines/table-engines/integrations/azureBlobStorage.md#hive-style-partitioning) and will allow to use partition columns as virtual columns in the query. These virtual columns will have the same names as in the partitioned path, but starting with `_`.
Whether the client should use the user settings from the the server configuration. This only affects operations performed on the client side, in particular parsing the INSERT input data and formatting the query result. Most of query execution happens on the server and is not affected by this setting. The settings are sent over network even if this setting is set to false; server setting send_settings_to_client can be used to disable it fully.
{"query_plan_use_new_logical_join_step", false, true, "Enable new step"},
70
+
/// 24.12 and 25.1 don't have this setting but behave as if it's set to true.
71
+
/// Older versions behave as if it's set to false.
72
+
{"apply_settings_from_server", false, true, "Client-side code (e.g. INSERT input parsing and query output formatting) will use the same settings as the server, including settings from server config."},
0 commit comments