mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
22 lines
481 B
Go
22 lines
481 B
Go
package dax
|
|
|
|
type SnapshotShardDataRequest struct {
|
|
Address Address `json:"address"`
|
|
|
|
TableKey TableKey `json:"table-key"`
|
|
ShardNum ShardNum `json:"shard"`
|
|
}
|
|
|
|
type SnapshotTableKeysRequest struct {
|
|
Address Address `json:"address"`
|
|
|
|
TableKey TableKey `json:"table-key"`
|
|
PartitionNum PartitionNum `json:"partition"`
|
|
}
|
|
|
|
type SnapshotFieldKeysRequest struct {
|
|
Address Address `json:"address"`
|
|
|
|
TableKey TableKey `json:"table-key"`
|
|
Field FieldName `json:"field"`
|
|
}
|