yjp hai 1 ano
pai
achega
57302e725f
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      client/client_cmd_request.go

+ 4 - 4
client/client_cmd_request.go

@@ -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 {