|
|
@@ -19,14 +19,14 @@ type InsertRequest struct {
|
|
|
}
|
|
|
|
|
|
type InsertBatchRequest struct {
|
|
|
- Items []*InsertTableRowItem
|
|
|
+ Items []InsertTableRowItem
|
|
|
UserID string
|
|
|
}
|
|
|
|
|
|
type InsertTableRowItem struct {
|
|
|
TablePrefixWithSchema string
|
|
|
Version string
|
|
|
- Items []*InsertItem
|
|
|
+ Items []InsertItem
|
|
|
}
|
|
|
|
|
|
type InsertItem struct {
|
|
|
@@ -42,14 +42,14 @@ type DeleteRequest struct {
|
|
|
}
|
|
|
|
|
|
type DeleteBatchRequest struct {
|
|
|
- Items []*DeleteTableRowItem
|
|
|
+ Items []DeleteTableRowItem
|
|
|
UserID string
|
|
|
}
|
|
|
|
|
|
type DeleteTableRowItem struct {
|
|
|
TablePrefixWithSchema string
|
|
|
Version string
|
|
|
- Items []*DeleteItem
|
|
|
+ Items []DeleteItem
|
|
|
}
|
|
|
|
|
|
type DeleteItem struct {
|