We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95960e commit 4aa4ef1Copy full SHA for 4aa4ef1
1 file changed
src/Storages/ObjectStorage/DataLakes/Iceberg/Utils.h
@@ -38,6 +38,10 @@ struct TransformAndArgument
38
{
39
String transform_name;
40
std::optional<size_t> argument;
41
+ /// When Iceberg table is partitioned by time, splitting by partitions can be made using different timezone
42
+ /// (UTC in most cases). This timezone can be set with setting `iceberg_partition_timezone`, value is in this member.
43
+ /// When Iceberg partition condition converted to ClickHouse function in `parseTransformAndArgument` method
44
+ /// `time_zone` added as second argument to functions like `toRelativeDayNum`, `toYearNumSinceEpoch`, etc.
45
std::optional<String> time_zone;
46
};
47
0 commit comments