File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 4
4
- Add ` hex ` property to analyzer's properties
5
5
- Add support for ` computedValues `
6
6
- Optional ` computeOn ` field in ` computedValues `
7
+ - Add support for ` computedValues ` into collection inventory
7
8
8
9
## [ 1.3.3] ( https://github.com/arangodb/go-driver/tree/v1.3.3 ) (2022-07-27)
9
10
- Fix ` lastValue ` field type
Original file line number Diff line number Diff line change @@ -289,6 +289,8 @@ type InventoryCollectionParameters struct {
289
289
WaitForSync bool `json:"waitForSync,omitempty"`
290
290
// Available from 3.6 ArangoD version.
291
291
WriteConcern int `json:"writeConcern,omitempty"`
292
+ // Available from 3.10 ArangoD version.
293
+ ComputedValues []ComputedValue `json:"computedValues,omitempty"`
292
294
}
293
295
294
296
// IsSatellite returns true if the collection is a satellite collection
Original file line number Diff line number Diff line change @@ -319,6 +319,8 @@ type inventoryCollectionParametersInternal struct {
319
319
WaitForSync bool `json:"waitForSync,omitempty"`
320
320
// Available from 3.6 ArangoD version.
321
321
WriteConcern int `json:"writeConcern,omitempty"`
322
+ // Available from 3.10 ArangoD version.
323
+ ComputedValues []ComputedValue `json:"computedValues,omitempty"`
322
324
}
323
325
324
326
func (p * InventoryCollectionParameters ) asInternal () inventoryCollectionParametersInternal {
@@ -370,6 +372,7 @@ func (p *InventoryCollectionParameters) asInternal() inventoryCollectionParamete
370
372
UsesRevisionsAsDocumentIds : p .UsesRevisionsAsDocumentIds ,
371
373
WaitForSync : p .WaitForSync ,
372
374
WriteConcern : p .WriteConcern ,
375
+ ComputedValues : p .ComputedValues ,
373
376
}
374
377
}
375
378
@@ -424,6 +427,7 @@ func (p *inventoryCollectionParametersInternal) asExternal() InventoryCollection
424
427
UsesRevisionsAsDocumentIds : p .UsesRevisionsAsDocumentIds ,
425
428
WaitForSync : p .WaitForSync ,
426
429
WriteConcern : p .WriteConcern ,
430
+ ComputedValues : p .ComputedValues ,
427
431
}
428
432
}
429
433
You can’t perform that action at this time.
0 commit comments