Skip to content

Commit a493436

Browse files
committed
Default of enable_url_encoding set to 0
1 parent b884cb9 commit a493436

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Core/Settings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5030,10 +5030,10 @@ Possible values:
50305030
- 0 — `SELECT` throws an exception if empty file is not compatible with requested format.
50315031
- 1 — `SELECT` returns empty result for empty file.
50325032
)", 0) \
5033-
DECLARE(Bool, enable_url_encoding, true, R"(
5033+
DECLARE(Bool, enable_url_encoding, false, R"(
50345034
Allows to enable/disable decoding/encoding path in uri in [URL](../../engines/table-engines/special/url.md) engine tables.
50355035
5036-
Enabled by default.
5036+
Disabled by default.
50375037
)", 0) \
50385038
DECLARE(UInt64, database_replicated_initial_query_timeout_sec, 300, R"(
50395039
Sets how long initial DDL query should wait for Replicated database to process previous DDL queue entries in seconds.

src/Core/SettingsChangesHistory.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ const VersionToSettingsChangesMap & getSettingsChangesHistory()
101101
{"compile_expressions", false, true, "We believe that the LLVM infrastructure behind the JIT compiler is stable enough to enable this setting by default."},
102102
{"use_legacy_to_time", false, false, "New setting. Allows for user to use the old function logic for toTime, which works as toTimeWithFixedDate."},
103103
{"input_format_parquet_allow_geoparquet_parser", false, true, "A new setting to use geo columns in parquet file"},
104+
{"enable_url_encoding", true, false, "Changed existing setting's default value"},
104105
});
105106
addSettingsChanges(settings_changes_history, "25.4",
106107
{

0 commit comments

Comments
 (0)