diff --git a/src/Core/Settings.h b/src/Core/Settings.h index 2ca8d1a3fbd..ec9c0e6487c 100644 --- a/src/Core/Settings.h +++ b/src/Core/Settings.h @@ -586,8 +586,6 @@ static constexpr UInt64 operator""_GiB(unsigned long long value) M(Bool, allow_experimental_object_type, false, "Allow Object and JSON data types", 0) \ M(String, insert_deduplication_token, "", "If not empty, used for duplicate detection instead of data digest", 0) \ M(String, ann_index_params, "", "Parameters for ANNIndexes in select queries", 0) \ -// End of COMMON_SETTINGS -// Please add settings related to formats into the FORMAT_FACTORY_SETTINGS and move obsolete settings to OBSOLETE_SETTINGS. M(Bool, count_distinct_optimization, false, "Rewrite count distinct to subquery of group by", 0) \ M(Bool, throw_on_unsupported_query_inside_transaction, true, "Throw exception if unsupported query is used inside transaction", 0) \ M(Bool, throw_if_no_data_to_insert, true, "Enables or disables empty INSERTs, enabled by default", 0) \ diff --git a/src/Storages/MergeTree/MergeTreeIndexAnnoy.h b/src/Storages/MergeTree/MergeTreeIndexAnnoy.h index 080a6051eac..9d65bfc7d35 100644 --- a/src/Storages/MergeTree/MergeTreeIndexAnnoy.h +++ b/src/Storages/MergeTree/MergeTreeIndexAnnoy.h @@ -11,7 +11,7 @@ namespace DB { -// auxillary namespace for working with spotify-annoy library +// auxiliary namespace for working with spotify-annoy library // mainly for serialization and deserialization of the index namespace Annoy {