File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change
1
+ * Added support for ` PartitionBy ` in ` DescribeTable ` results
2
+
1
3
## v3.115.6
2
4
* Fixed context cancellation issues in the ` QueryService ` stream results
3
5
Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ type Partitions interface {
245
245
}
246
246
247
247
type PartitioningSettings struct {
248
+ PartitionBy []string
248
249
PartitioningBySize FeatureFlag
249
250
PartitionSizeMb uint64
250
251
PartitioningByLoad FeatureFlag
@@ -264,6 +265,7 @@ func (ps PartitioningSettings) toYDB() *Ydb_Table.PartitioningSettings {
264
265
265
266
func NewPartitioningSettings (ps * Ydb_Table.PartitioningSettings ) PartitioningSettings {
266
267
return PartitioningSettings {
268
+ PartitionBy : ps .GetPartitionBy (),
267
269
PartitioningBySize : feature .FromYDB (ps .GetPartitioningBySize ()),
268
270
PartitionSizeMb : ps .GetPartitionSizeMb (),
269
271
PartitioningByLoad : feature .FromYDB (ps .GetPartitioningByLoad ()),
You can’t perform that action at this time.
0 commit comments