command.pb.go 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.12.4
  5. // source: v1/request/command.proto
  6. package request
  7. import (
  8. _ "github.com/mwitkow/go-proto-validators"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type AutoMigrateRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  25. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  26. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  27. TableModelDescribe []byte `protobuf:"bytes,4,opt,name=TableModelDescribe,proto3" json:"TableModelDescribe,omitempty"`
  28. }
  29. func (x *AutoMigrateRequest) Reset() {
  30. *x = AutoMigrateRequest{}
  31. if protoimpl.UnsafeEnabled {
  32. mi := &file_v1_request_command_proto_msgTypes[0]
  33. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  34. ms.StoreMessageInfo(mi)
  35. }
  36. }
  37. func (x *AutoMigrateRequest) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*AutoMigrateRequest) ProtoMessage() {}
  41. func (x *AutoMigrateRequest) ProtoReflect() protoreflect.Message {
  42. mi := &file_v1_request_command_proto_msgTypes[0]
  43. if protoimpl.UnsafeEnabled && x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use AutoMigrateRequest.ProtoReflect.Descriptor instead.
  53. func (*AutoMigrateRequest) Descriptor() ([]byte, []int) {
  54. return file_v1_request_command_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *AutoMigrateRequest) GetDatabaseID() string {
  57. if x != nil {
  58. return x.DatabaseID
  59. }
  60. return ""
  61. }
  62. func (x *AutoMigrateRequest) GetTablePrefixWithSchema() string {
  63. if x != nil {
  64. return x.TablePrefixWithSchema
  65. }
  66. return ""
  67. }
  68. func (x *AutoMigrateRequest) GetVersion() string {
  69. if x != nil {
  70. return x.Version
  71. }
  72. return ""
  73. }
  74. func (x *AutoMigrateRequest) GetTableModelDescribe() []byte {
  75. if x != nil {
  76. return x.TableModelDescribe
  77. }
  78. return nil
  79. }
  80. type TransactionOperation struct {
  81. state protoimpl.MessageState
  82. sizeCache protoimpl.SizeCache
  83. unknownFields protoimpl.UnknownFields
  84. // Types that are assignable to Request:
  85. //
  86. // *TransactionOperation_TransactionBeginRequest
  87. // *TransactionOperation_InsertRequest
  88. // *TransactionOperation_InsertBatchRequest
  89. // *TransactionOperation_DeleteRequest
  90. // *TransactionOperation_DeleteBatchRequest
  91. // *TransactionOperation_UpdateRequest
  92. // *TransactionOperation_TransactionEndRequest
  93. Request isTransactionOperation_Request `protobuf_oneof:"Request"`
  94. }
  95. func (x *TransactionOperation) Reset() {
  96. *x = TransactionOperation{}
  97. if protoimpl.UnsafeEnabled {
  98. mi := &file_v1_request_command_proto_msgTypes[1]
  99. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  100. ms.StoreMessageInfo(mi)
  101. }
  102. }
  103. func (x *TransactionOperation) String() string {
  104. return protoimpl.X.MessageStringOf(x)
  105. }
  106. func (*TransactionOperation) ProtoMessage() {}
  107. func (x *TransactionOperation) ProtoReflect() protoreflect.Message {
  108. mi := &file_v1_request_command_proto_msgTypes[1]
  109. if protoimpl.UnsafeEnabled && x != nil {
  110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  111. if ms.LoadMessageInfo() == nil {
  112. ms.StoreMessageInfo(mi)
  113. }
  114. return ms
  115. }
  116. return mi.MessageOf(x)
  117. }
  118. // Deprecated: Use TransactionOperation.ProtoReflect.Descriptor instead.
  119. func (*TransactionOperation) Descriptor() ([]byte, []int) {
  120. return file_v1_request_command_proto_rawDescGZIP(), []int{1}
  121. }
  122. func (m *TransactionOperation) GetRequest() isTransactionOperation_Request {
  123. if m != nil {
  124. return m.Request
  125. }
  126. return nil
  127. }
  128. func (x *TransactionOperation) GetTransactionBeginRequest() *TransactionBeginRequest {
  129. if x, ok := x.GetRequest().(*TransactionOperation_TransactionBeginRequest); ok {
  130. return x.TransactionBeginRequest
  131. }
  132. return nil
  133. }
  134. func (x *TransactionOperation) GetInsertRequest() *InsertRequest {
  135. if x, ok := x.GetRequest().(*TransactionOperation_InsertRequest); ok {
  136. return x.InsertRequest
  137. }
  138. return nil
  139. }
  140. func (x *TransactionOperation) GetInsertBatchRequest() *InsertBatchRequest {
  141. if x, ok := x.GetRequest().(*TransactionOperation_InsertBatchRequest); ok {
  142. return x.InsertBatchRequest
  143. }
  144. return nil
  145. }
  146. func (x *TransactionOperation) GetDeleteRequest() *DeleteRequest {
  147. if x, ok := x.GetRequest().(*TransactionOperation_DeleteRequest); ok {
  148. return x.DeleteRequest
  149. }
  150. return nil
  151. }
  152. func (x *TransactionOperation) GetDeleteBatchRequest() *DeleteBatchRequest {
  153. if x, ok := x.GetRequest().(*TransactionOperation_DeleteBatchRequest); ok {
  154. return x.DeleteBatchRequest
  155. }
  156. return nil
  157. }
  158. func (x *TransactionOperation) GetUpdateRequest() *UpdateRequest {
  159. if x, ok := x.GetRequest().(*TransactionOperation_UpdateRequest); ok {
  160. return x.UpdateRequest
  161. }
  162. return nil
  163. }
  164. func (x *TransactionOperation) GetTransactionEndRequest() *TransactionEndRequest {
  165. if x, ok := x.GetRequest().(*TransactionOperation_TransactionEndRequest); ok {
  166. return x.TransactionEndRequest
  167. }
  168. return nil
  169. }
  170. type isTransactionOperation_Request interface {
  171. isTransactionOperation_Request()
  172. }
  173. type TransactionOperation_TransactionBeginRequest struct {
  174. TransactionBeginRequest *TransactionBeginRequest `protobuf:"bytes,1,opt,name=TransactionBeginRequest,proto3,oneof"`
  175. }
  176. type TransactionOperation_InsertRequest struct {
  177. InsertRequest *InsertRequest `protobuf:"bytes,2,opt,name=InsertRequest,proto3,oneof"`
  178. }
  179. type TransactionOperation_InsertBatchRequest struct {
  180. InsertBatchRequest *InsertBatchRequest `protobuf:"bytes,3,opt,name=InsertBatchRequest,proto3,oneof"`
  181. }
  182. type TransactionOperation_DeleteRequest struct {
  183. DeleteRequest *DeleteRequest `protobuf:"bytes,4,opt,name=DeleteRequest,proto3,oneof"`
  184. }
  185. type TransactionOperation_DeleteBatchRequest struct {
  186. DeleteBatchRequest *DeleteBatchRequest `protobuf:"bytes,5,opt,name=DeleteBatchRequest,proto3,oneof"`
  187. }
  188. type TransactionOperation_UpdateRequest struct {
  189. UpdateRequest *UpdateRequest `protobuf:"bytes,6,opt,name=UpdateRequest,proto3,oneof"`
  190. }
  191. type TransactionOperation_TransactionEndRequest struct {
  192. TransactionEndRequest *TransactionEndRequest `protobuf:"bytes,7,opt,name=TransactionEndRequest,proto3,oneof"`
  193. }
  194. func (*TransactionOperation_TransactionBeginRequest) isTransactionOperation_Request() {}
  195. func (*TransactionOperation_InsertRequest) isTransactionOperation_Request() {}
  196. func (*TransactionOperation_InsertBatchRequest) isTransactionOperation_Request() {}
  197. func (*TransactionOperation_DeleteRequest) isTransactionOperation_Request() {}
  198. func (*TransactionOperation_DeleteBatchRequest) isTransactionOperation_Request() {}
  199. func (*TransactionOperation_UpdateRequest) isTransactionOperation_Request() {}
  200. func (*TransactionOperation_TransactionEndRequest) isTransactionOperation_Request() {}
  201. type InsertRequest struct {
  202. state protoimpl.MessageState
  203. sizeCache protoimpl.SizeCache
  204. unknownFields protoimpl.UnknownFields
  205. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  206. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  207. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  208. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  209. TableRow *TableRow `protobuf:"bytes,5,opt,name=TableRow,proto3" json:"TableRow,omitempty"`
  210. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  211. }
  212. func (x *InsertRequest) Reset() {
  213. *x = InsertRequest{}
  214. if protoimpl.UnsafeEnabled {
  215. mi := &file_v1_request_command_proto_msgTypes[2]
  216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  217. ms.StoreMessageInfo(mi)
  218. }
  219. }
  220. func (x *InsertRequest) String() string {
  221. return protoimpl.X.MessageStringOf(x)
  222. }
  223. func (*InsertRequest) ProtoMessage() {}
  224. func (x *InsertRequest) ProtoReflect() protoreflect.Message {
  225. mi := &file_v1_request_command_proto_msgTypes[2]
  226. if protoimpl.UnsafeEnabled && x != nil {
  227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  228. if ms.LoadMessageInfo() == nil {
  229. ms.StoreMessageInfo(mi)
  230. }
  231. return ms
  232. }
  233. return mi.MessageOf(x)
  234. }
  235. // Deprecated: Use InsertRequest.ProtoReflect.Descriptor instead.
  236. func (*InsertRequest) Descriptor() ([]byte, []int) {
  237. return file_v1_request_command_proto_rawDescGZIP(), []int{2}
  238. }
  239. func (x *InsertRequest) GetDatabaseID() string {
  240. if x != nil {
  241. return x.DatabaseID
  242. }
  243. return ""
  244. }
  245. func (x *InsertRequest) GetTablePrefixWithSchema() string {
  246. if x != nil {
  247. return x.TablePrefixWithSchema
  248. }
  249. return ""
  250. }
  251. func (x *InsertRequest) GetVersion() string {
  252. if x != nil {
  253. return x.Version
  254. }
  255. return ""
  256. }
  257. func (x *InsertRequest) GetKeyColumns() []string {
  258. if x != nil {
  259. return x.KeyColumns
  260. }
  261. return nil
  262. }
  263. func (x *InsertRequest) GetTableRow() *TableRow {
  264. if x != nil {
  265. return x.TableRow
  266. }
  267. return nil
  268. }
  269. func (x *InsertRequest) GetUserID() string {
  270. if x != nil {
  271. return x.UserID
  272. }
  273. return ""
  274. }
  275. type InsertBatchRequest struct {
  276. state protoimpl.MessageState
  277. sizeCache protoimpl.SizeCache
  278. unknownFields protoimpl.UnknownFields
  279. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  280. Items []*InsertTableItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  281. UserID string `protobuf:"bytes,3,opt,name=UserID,proto3" json:"UserID,omitempty"`
  282. }
  283. func (x *InsertBatchRequest) Reset() {
  284. *x = InsertBatchRequest{}
  285. if protoimpl.UnsafeEnabled {
  286. mi := &file_v1_request_command_proto_msgTypes[3]
  287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  288. ms.StoreMessageInfo(mi)
  289. }
  290. }
  291. func (x *InsertBatchRequest) String() string {
  292. return protoimpl.X.MessageStringOf(x)
  293. }
  294. func (*InsertBatchRequest) ProtoMessage() {}
  295. func (x *InsertBatchRequest) ProtoReflect() protoreflect.Message {
  296. mi := &file_v1_request_command_proto_msgTypes[3]
  297. if protoimpl.UnsafeEnabled && x != nil {
  298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  299. if ms.LoadMessageInfo() == nil {
  300. ms.StoreMessageInfo(mi)
  301. }
  302. return ms
  303. }
  304. return mi.MessageOf(x)
  305. }
  306. // Deprecated: Use InsertBatchRequest.ProtoReflect.Descriptor instead.
  307. func (*InsertBatchRequest) Descriptor() ([]byte, []int) {
  308. return file_v1_request_command_proto_rawDescGZIP(), []int{3}
  309. }
  310. func (x *InsertBatchRequest) GetDatabaseID() string {
  311. if x != nil {
  312. return x.DatabaseID
  313. }
  314. return ""
  315. }
  316. func (x *InsertBatchRequest) GetItems() []*InsertTableItem {
  317. if x != nil {
  318. return x.Items
  319. }
  320. return nil
  321. }
  322. func (x *InsertBatchRequest) GetUserID() string {
  323. if x != nil {
  324. return x.UserID
  325. }
  326. return ""
  327. }
  328. type InsertTableItem struct {
  329. state protoimpl.MessageState
  330. sizeCache protoimpl.SizeCache
  331. unknownFields protoimpl.UnknownFields
  332. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  333. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  334. Items []*InsertItem `protobuf:"bytes,3,rep,name=Items,proto3" json:"Items,omitempty"`
  335. }
  336. func (x *InsertTableItem) Reset() {
  337. *x = InsertTableItem{}
  338. if protoimpl.UnsafeEnabled {
  339. mi := &file_v1_request_command_proto_msgTypes[4]
  340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  341. ms.StoreMessageInfo(mi)
  342. }
  343. }
  344. func (x *InsertTableItem) String() string {
  345. return protoimpl.X.MessageStringOf(x)
  346. }
  347. func (*InsertTableItem) ProtoMessage() {}
  348. func (x *InsertTableItem) ProtoReflect() protoreflect.Message {
  349. mi := &file_v1_request_command_proto_msgTypes[4]
  350. if protoimpl.UnsafeEnabled && x != nil {
  351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  352. if ms.LoadMessageInfo() == nil {
  353. ms.StoreMessageInfo(mi)
  354. }
  355. return ms
  356. }
  357. return mi.MessageOf(x)
  358. }
  359. // Deprecated: Use InsertTableItem.ProtoReflect.Descriptor instead.
  360. func (*InsertTableItem) Descriptor() ([]byte, []int) {
  361. return file_v1_request_command_proto_rawDescGZIP(), []int{4}
  362. }
  363. func (x *InsertTableItem) GetTablePrefixWithSchema() string {
  364. if x != nil {
  365. return x.TablePrefixWithSchema
  366. }
  367. return ""
  368. }
  369. func (x *InsertTableItem) GetVersion() string {
  370. if x != nil {
  371. return x.Version
  372. }
  373. return ""
  374. }
  375. func (x *InsertTableItem) GetItems() []*InsertItem {
  376. if x != nil {
  377. return x.Items
  378. }
  379. return nil
  380. }
  381. type InsertItem struct {
  382. state protoimpl.MessageState
  383. sizeCache protoimpl.SizeCache
  384. unknownFields protoimpl.UnknownFields
  385. KeyColumns []string `protobuf:"bytes,1,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  386. TableRow *TableRow `protobuf:"bytes,2,opt,name=TableRow,proto3" json:"TableRow,omitempty"`
  387. }
  388. func (x *InsertItem) Reset() {
  389. *x = InsertItem{}
  390. if protoimpl.UnsafeEnabled {
  391. mi := &file_v1_request_command_proto_msgTypes[5]
  392. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  393. ms.StoreMessageInfo(mi)
  394. }
  395. }
  396. func (x *InsertItem) String() string {
  397. return protoimpl.X.MessageStringOf(x)
  398. }
  399. func (*InsertItem) ProtoMessage() {}
  400. func (x *InsertItem) ProtoReflect() protoreflect.Message {
  401. mi := &file_v1_request_command_proto_msgTypes[5]
  402. if protoimpl.UnsafeEnabled && x != nil {
  403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  404. if ms.LoadMessageInfo() == nil {
  405. ms.StoreMessageInfo(mi)
  406. }
  407. return ms
  408. }
  409. return mi.MessageOf(x)
  410. }
  411. // Deprecated: Use InsertItem.ProtoReflect.Descriptor instead.
  412. func (*InsertItem) Descriptor() ([]byte, []int) {
  413. return file_v1_request_command_proto_rawDescGZIP(), []int{5}
  414. }
  415. func (x *InsertItem) GetKeyColumns() []string {
  416. if x != nil {
  417. return x.KeyColumns
  418. }
  419. return nil
  420. }
  421. func (x *InsertItem) GetTableRow() *TableRow {
  422. if x != nil {
  423. return x.TableRow
  424. }
  425. return nil
  426. }
  427. type DeleteRequest struct {
  428. state protoimpl.MessageState
  429. sizeCache protoimpl.SizeCache
  430. unknownFields protoimpl.UnknownFields
  431. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  432. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  433. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  434. KeyValues map[string]string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  435. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  436. }
  437. func (x *DeleteRequest) Reset() {
  438. *x = DeleteRequest{}
  439. if protoimpl.UnsafeEnabled {
  440. mi := &file_v1_request_command_proto_msgTypes[6]
  441. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  442. ms.StoreMessageInfo(mi)
  443. }
  444. }
  445. func (x *DeleteRequest) String() string {
  446. return protoimpl.X.MessageStringOf(x)
  447. }
  448. func (*DeleteRequest) ProtoMessage() {}
  449. func (x *DeleteRequest) ProtoReflect() protoreflect.Message {
  450. mi := &file_v1_request_command_proto_msgTypes[6]
  451. if protoimpl.UnsafeEnabled && x != nil {
  452. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  453. if ms.LoadMessageInfo() == nil {
  454. ms.StoreMessageInfo(mi)
  455. }
  456. return ms
  457. }
  458. return mi.MessageOf(x)
  459. }
  460. // Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.
  461. func (*DeleteRequest) Descriptor() ([]byte, []int) {
  462. return file_v1_request_command_proto_rawDescGZIP(), []int{6}
  463. }
  464. func (x *DeleteRequest) GetDatabaseID() string {
  465. if x != nil {
  466. return x.DatabaseID
  467. }
  468. return ""
  469. }
  470. func (x *DeleteRequest) GetTablePrefixWithSchema() string {
  471. if x != nil {
  472. return x.TablePrefixWithSchema
  473. }
  474. return ""
  475. }
  476. func (x *DeleteRequest) GetVersion() string {
  477. if x != nil {
  478. return x.Version
  479. }
  480. return ""
  481. }
  482. func (x *DeleteRequest) GetKeyValues() map[string]string {
  483. if x != nil {
  484. return x.KeyValues
  485. }
  486. return nil
  487. }
  488. func (x *DeleteRequest) GetUserID() string {
  489. if x != nil {
  490. return x.UserID
  491. }
  492. return ""
  493. }
  494. type DeleteBatchRequest struct {
  495. state protoimpl.MessageState
  496. sizeCache protoimpl.SizeCache
  497. unknownFields protoimpl.UnknownFields
  498. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  499. Items []*DeleteTableItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  500. UserID string `protobuf:"bytes,3,opt,name=UserID,proto3" json:"UserID,omitempty"`
  501. }
  502. func (x *DeleteBatchRequest) Reset() {
  503. *x = DeleteBatchRequest{}
  504. if protoimpl.UnsafeEnabled {
  505. mi := &file_v1_request_command_proto_msgTypes[7]
  506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  507. ms.StoreMessageInfo(mi)
  508. }
  509. }
  510. func (x *DeleteBatchRequest) String() string {
  511. return protoimpl.X.MessageStringOf(x)
  512. }
  513. func (*DeleteBatchRequest) ProtoMessage() {}
  514. func (x *DeleteBatchRequest) ProtoReflect() protoreflect.Message {
  515. mi := &file_v1_request_command_proto_msgTypes[7]
  516. if protoimpl.UnsafeEnabled && x != nil {
  517. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  518. if ms.LoadMessageInfo() == nil {
  519. ms.StoreMessageInfo(mi)
  520. }
  521. return ms
  522. }
  523. return mi.MessageOf(x)
  524. }
  525. // Deprecated: Use DeleteBatchRequest.ProtoReflect.Descriptor instead.
  526. func (*DeleteBatchRequest) Descriptor() ([]byte, []int) {
  527. return file_v1_request_command_proto_rawDescGZIP(), []int{7}
  528. }
  529. func (x *DeleteBatchRequest) GetDatabaseID() string {
  530. if x != nil {
  531. return x.DatabaseID
  532. }
  533. return ""
  534. }
  535. func (x *DeleteBatchRequest) GetItems() []*DeleteTableItem {
  536. if x != nil {
  537. return x.Items
  538. }
  539. return nil
  540. }
  541. func (x *DeleteBatchRequest) GetUserID() string {
  542. if x != nil {
  543. return x.UserID
  544. }
  545. return ""
  546. }
  547. type DeleteTableItem struct {
  548. state protoimpl.MessageState
  549. sizeCache protoimpl.SizeCache
  550. unknownFields protoimpl.UnknownFields
  551. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  552. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  553. Items []*DeleteItem `protobuf:"bytes,3,rep,name=Items,proto3" json:"Items,omitempty"`
  554. }
  555. func (x *DeleteTableItem) Reset() {
  556. *x = DeleteTableItem{}
  557. if protoimpl.UnsafeEnabled {
  558. mi := &file_v1_request_command_proto_msgTypes[8]
  559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  560. ms.StoreMessageInfo(mi)
  561. }
  562. }
  563. func (x *DeleteTableItem) String() string {
  564. return protoimpl.X.MessageStringOf(x)
  565. }
  566. func (*DeleteTableItem) ProtoMessage() {}
  567. func (x *DeleteTableItem) ProtoReflect() protoreflect.Message {
  568. mi := &file_v1_request_command_proto_msgTypes[8]
  569. if protoimpl.UnsafeEnabled && x != nil {
  570. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  571. if ms.LoadMessageInfo() == nil {
  572. ms.StoreMessageInfo(mi)
  573. }
  574. return ms
  575. }
  576. return mi.MessageOf(x)
  577. }
  578. // Deprecated: Use DeleteTableItem.ProtoReflect.Descriptor instead.
  579. func (*DeleteTableItem) Descriptor() ([]byte, []int) {
  580. return file_v1_request_command_proto_rawDescGZIP(), []int{8}
  581. }
  582. func (x *DeleteTableItem) GetTablePrefixWithSchema() string {
  583. if x != nil {
  584. return x.TablePrefixWithSchema
  585. }
  586. return ""
  587. }
  588. func (x *DeleteTableItem) GetVersion() string {
  589. if x != nil {
  590. return x.Version
  591. }
  592. return ""
  593. }
  594. func (x *DeleteTableItem) GetItems() []*DeleteItem {
  595. if x != nil {
  596. return x.Items
  597. }
  598. return nil
  599. }
  600. type DeleteItem struct {
  601. state protoimpl.MessageState
  602. sizeCache protoimpl.SizeCache
  603. unknownFields protoimpl.UnknownFields
  604. KeyValues map[string]string `protobuf:"bytes,1,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  605. }
  606. func (x *DeleteItem) Reset() {
  607. *x = DeleteItem{}
  608. if protoimpl.UnsafeEnabled {
  609. mi := &file_v1_request_command_proto_msgTypes[9]
  610. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  611. ms.StoreMessageInfo(mi)
  612. }
  613. }
  614. func (x *DeleteItem) String() string {
  615. return protoimpl.X.MessageStringOf(x)
  616. }
  617. func (*DeleteItem) ProtoMessage() {}
  618. func (x *DeleteItem) ProtoReflect() protoreflect.Message {
  619. mi := &file_v1_request_command_proto_msgTypes[9]
  620. if protoimpl.UnsafeEnabled && x != nil {
  621. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  622. if ms.LoadMessageInfo() == nil {
  623. ms.StoreMessageInfo(mi)
  624. }
  625. return ms
  626. }
  627. return mi.MessageOf(x)
  628. }
  629. // Deprecated: Use DeleteItem.ProtoReflect.Descriptor instead.
  630. func (*DeleteItem) Descriptor() ([]byte, []int) {
  631. return file_v1_request_command_proto_rawDescGZIP(), []int{9}
  632. }
  633. func (x *DeleteItem) GetKeyValues() map[string]string {
  634. if x != nil {
  635. return x.KeyValues
  636. }
  637. return nil
  638. }
  639. type UpdateRequest struct {
  640. state protoimpl.MessageState
  641. sizeCache protoimpl.SizeCache
  642. unknownFields protoimpl.UnknownFields
  643. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  644. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  645. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  646. KeyValues map[string]string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  647. NewTableRow *TableRow `protobuf:"bytes,5,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  648. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  649. }
  650. func (x *UpdateRequest) Reset() {
  651. *x = UpdateRequest{}
  652. if protoimpl.UnsafeEnabled {
  653. mi := &file_v1_request_command_proto_msgTypes[10]
  654. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  655. ms.StoreMessageInfo(mi)
  656. }
  657. }
  658. func (x *UpdateRequest) String() string {
  659. return protoimpl.X.MessageStringOf(x)
  660. }
  661. func (*UpdateRequest) ProtoMessage() {}
  662. func (x *UpdateRequest) ProtoReflect() protoreflect.Message {
  663. mi := &file_v1_request_command_proto_msgTypes[10]
  664. if protoimpl.UnsafeEnabled && x != nil {
  665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  666. if ms.LoadMessageInfo() == nil {
  667. ms.StoreMessageInfo(mi)
  668. }
  669. return ms
  670. }
  671. return mi.MessageOf(x)
  672. }
  673. // Deprecated: Use UpdateRequest.ProtoReflect.Descriptor instead.
  674. func (*UpdateRequest) Descriptor() ([]byte, []int) {
  675. return file_v1_request_command_proto_rawDescGZIP(), []int{10}
  676. }
  677. func (x *UpdateRequest) GetDatabaseID() string {
  678. if x != nil {
  679. return x.DatabaseID
  680. }
  681. return ""
  682. }
  683. func (x *UpdateRequest) GetTablePrefixWithSchema() string {
  684. if x != nil {
  685. return x.TablePrefixWithSchema
  686. }
  687. return ""
  688. }
  689. func (x *UpdateRequest) GetVersion() string {
  690. if x != nil {
  691. return x.Version
  692. }
  693. return ""
  694. }
  695. func (x *UpdateRequest) GetKeyValues() map[string]string {
  696. if x != nil {
  697. return x.KeyValues
  698. }
  699. return nil
  700. }
  701. func (x *UpdateRequest) GetNewTableRow() *TableRow {
  702. if x != nil {
  703. return x.NewTableRow
  704. }
  705. return nil
  706. }
  707. func (x *UpdateRequest) GetUserID() string {
  708. if x != nil {
  709. return x.UserID
  710. }
  711. return ""
  712. }
  713. type ReplayRequest struct {
  714. state protoimpl.MessageState
  715. sizeCache protoimpl.SizeCache
  716. unknownFields protoimpl.UnknownFields
  717. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  718. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  719. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  720. KeyValues map[string]string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  721. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  722. }
  723. func (x *ReplayRequest) Reset() {
  724. *x = ReplayRequest{}
  725. if protoimpl.UnsafeEnabled {
  726. mi := &file_v1_request_command_proto_msgTypes[11]
  727. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  728. ms.StoreMessageInfo(mi)
  729. }
  730. }
  731. func (x *ReplayRequest) String() string {
  732. return protoimpl.X.MessageStringOf(x)
  733. }
  734. func (*ReplayRequest) ProtoMessage() {}
  735. func (x *ReplayRequest) ProtoReflect() protoreflect.Message {
  736. mi := &file_v1_request_command_proto_msgTypes[11]
  737. if protoimpl.UnsafeEnabled && x != nil {
  738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  739. if ms.LoadMessageInfo() == nil {
  740. ms.StoreMessageInfo(mi)
  741. }
  742. return ms
  743. }
  744. return mi.MessageOf(x)
  745. }
  746. // Deprecated: Use ReplayRequest.ProtoReflect.Descriptor instead.
  747. func (*ReplayRequest) Descriptor() ([]byte, []int) {
  748. return file_v1_request_command_proto_rawDescGZIP(), []int{11}
  749. }
  750. func (x *ReplayRequest) GetDatabaseID() string {
  751. if x != nil {
  752. return x.DatabaseID
  753. }
  754. return ""
  755. }
  756. func (x *ReplayRequest) GetTablePrefixWithSchema() string {
  757. if x != nil {
  758. return x.TablePrefixWithSchema
  759. }
  760. return ""
  761. }
  762. func (x *ReplayRequest) GetVersion() string {
  763. if x != nil {
  764. return x.Version
  765. }
  766. return ""
  767. }
  768. func (x *ReplayRequest) GetKeyValues() map[string]string {
  769. if x != nil {
  770. return x.KeyValues
  771. }
  772. return nil
  773. }
  774. func (x *ReplayRequest) GetUserID() string {
  775. if x != nil {
  776. return x.UserID
  777. }
  778. return ""
  779. }
  780. type TransactionBeginRequest struct {
  781. state protoimpl.MessageState
  782. sizeCache protoimpl.SizeCache
  783. unknownFields protoimpl.UnknownFields
  784. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  785. }
  786. func (x *TransactionBeginRequest) Reset() {
  787. *x = TransactionBeginRequest{}
  788. if protoimpl.UnsafeEnabled {
  789. mi := &file_v1_request_command_proto_msgTypes[12]
  790. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  791. ms.StoreMessageInfo(mi)
  792. }
  793. }
  794. func (x *TransactionBeginRequest) String() string {
  795. return protoimpl.X.MessageStringOf(x)
  796. }
  797. func (*TransactionBeginRequest) ProtoMessage() {}
  798. func (x *TransactionBeginRequest) ProtoReflect() protoreflect.Message {
  799. mi := &file_v1_request_command_proto_msgTypes[12]
  800. if protoimpl.UnsafeEnabled && x != nil {
  801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  802. if ms.LoadMessageInfo() == nil {
  803. ms.StoreMessageInfo(mi)
  804. }
  805. return ms
  806. }
  807. return mi.MessageOf(x)
  808. }
  809. // Deprecated: Use TransactionBeginRequest.ProtoReflect.Descriptor instead.
  810. func (*TransactionBeginRequest) Descriptor() ([]byte, []int) {
  811. return file_v1_request_command_proto_rawDescGZIP(), []int{12}
  812. }
  813. func (x *TransactionBeginRequest) GetDatabaseID() string {
  814. if x != nil {
  815. return x.DatabaseID
  816. }
  817. return ""
  818. }
  819. type TransactionEndRequest struct {
  820. state protoimpl.MessageState
  821. sizeCache protoimpl.SizeCache
  822. unknownFields protoimpl.UnknownFields
  823. }
  824. func (x *TransactionEndRequest) Reset() {
  825. *x = TransactionEndRequest{}
  826. if protoimpl.UnsafeEnabled {
  827. mi := &file_v1_request_command_proto_msgTypes[13]
  828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  829. ms.StoreMessageInfo(mi)
  830. }
  831. }
  832. func (x *TransactionEndRequest) String() string {
  833. return protoimpl.X.MessageStringOf(x)
  834. }
  835. func (*TransactionEndRequest) ProtoMessage() {}
  836. func (x *TransactionEndRequest) ProtoReflect() protoreflect.Message {
  837. mi := &file_v1_request_command_proto_msgTypes[13]
  838. if protoimpl.UnsafeEnabled && x != nil {
  839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  840. if ms.LoadMessageInfo() == nil {
  841. ms.StoreMessageInfo(mi)
  842. }
  843. return ms
  844. }
  845. return mi.MessageOf(x)
  846. }
  847. // Deprecated: Use TransactionEndRequest.ProtoReflect.Descriptor instead.
  848. func (*TransactionEndRequest) Descriptor() ([]byte, []int) {
  849. return file_v1_request_command_proto_rawDescGZIP(), []int{13}
  850. }
  851. type TableRow struct {
  852. state protoimpl.MessageState
  853. sizeCache protoimpl.SizeCache
  854. unknownFields protoimpl.UnknownFields
  855. Columns []*Column `protobuf:"bytes,1,rep,name=Columns,proto3" json:"Columns,omitempty"`
  856. }
  857. func (x *TableRow) Reset() {
  858. *x = TableRow{}
  859. if protoimpl.UnsafeEnabled {
  860. mi := &file_v1_request_command_proto_msgTypes[14]
  861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  862. ms.StoreMessageInfo(mi)
  863. }
  864. }
  865. func (x *TableRow) String() string {
  866. return protoimpl.X.MessageStringOf(x)
  867. }
  868. func (*TableRow) ProtoMessage() {}
  869. func (x *TableRow) ProtoReflect() protoreflect.Message {
  870. mi := &file_v1_request_command_proto_msgTypes[14]
  871. if protoimpl.UnsafeEnabled && x != nil {
  872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  873. if ms.LoadMessageInfo() == nil {
  874. ms.StoreMessageInfo(mi)
  875. }
  876. return ms
  877. }
  878. return mi.MessageOf(x)
  879. }
  880. // Deprecated: Use TableRow.ProtoReflect.Descriptor instead.
  881. func (*TableRow) Descriptor() ([]byte, []int) {
  882. return file_v1_request_command_proto_rawDescGZIP(), []int{14}
  883. }
  884. func (x *TableRow) GetColumns() []*Column {
  885. if x != nil {
  886. return x.Columns
  887. }
  888. return nil
  889. }
  890. type Column struct {
  891. state protoimpl.MessageState
  892. sizeCache protoimpl.SizeCache
  893. unknownFields protoimpl.UnknownFields
  894. Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
  895. Value *ColumnValue `protobuf:"bytes,2,opt,name=Value,proto3" json:"Value,omitempty"`
  896. }
  897. func (x *Column) Reset() {
  898. *x = Column{}
  899. if protoimpl.UnsafeEnabled {
  900. mi := &file_v1_request_command_proto_msgTypes[15]
  901. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  902. ms.StoreMessageInfo(mi)
  903. }
  904. }
  905. func (x *Column) String() string {
  906. return protoimpl.X.MessageStringOf(x)
  907. }
  908. func (*Column) ProtoMessage() {}
  909. func (x *Column) ProtoReflect() protoreflect.Message {
  910. mi := &file_v1_request_command_proto_msgTypes[15]
  911. if protoimpl.UnsafeEnabled && x != nil {
  912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  913. if ms.LoadMessageInfo() == nil {
  914. ms.StoreMessageInfo(mi)
  915. }
  916. return ms
  917. }
  918. return mi.MessageOf(x)
  919. }
  920. // Deprecated: Use Column.ProtoReflect.Descriptor instead.
  921. func (*Column) Descriptor() ([]byte, []int) {
  922. return file_v1_request_command_proto_rawDescGZIP(), []int{15}
  923. }
  924. func (x *Column) GetName() string {
  925. if x != nil {
  926. return x.Name
  927. }
  928. return ""
  929. }
  930. func (x *Column) GetValue() *ColumnValue {
  931. if x != nil {
  932. return x.Value
  933. }
  934. return nil
  935. }
  936. type ColumnValue struct {
  937. state protoimpl.MessageState
  938. sizeCache protoimpl.SizeCache
  939. unknownFields protoimpl.UnknownFields
  940. Kind int32 `protobuf:"varint,1,opt,name=Kind,proto3" json:"Kind,omitempty"`
  941. Type string `protobuf:"bytes,2,opt,name=Type,proto3" json:"Type,omitempty"`
  942. // Types that are assignable to TypedValue:
  943. //
  944. // *ColumnValue_StringValue
  945. // *ColumnValue_Uint32Value
  946. // *ColumnValue_Uint64Value
  947. // *ColumnValue_Float64Value
  948. // *ColumnValue_BoolValue
  949. TypedValue isColumnValue_TypedValue `protobuf_oneof:"TypedValue"`
  950. }
  951. func (x *ColumnValue) Reset() {
  952. *x = ColumnValue{}
  953. if protoimpl.UnsafeEnabled {
  954. mi := &file_v1_request_command_proto_msgTypes[16]
  955. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  956. ms.StoreMessageInfo(mi)
  957. }
  958. }
  959. func (x *ColumnValue) String() string {
  960. return protoimpl.X.MessageStringOf(x)
  961. }
  962. func (*ColumnValue) ProtoMessage() {}
  963. func (x *ColumnValue) ProtoReflect() protoreflect.Message {
  964. mi := &file_v1_request_command_proto_msgTypes[16]
  965. if protoimpl.UnsafeEnabled && x != nil {
  966. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  967. if ms.LoadMessageInfo() == nil {
  968. ms.StoreMessageInfo(mi)
  969. }
  970. return ms
  971. }
  972. return mi.MessageOf(x)
  973. }
  974. // Deprecated: Use ColumnValue.ProtoReflect.Descriptor instead.
  975. func (*ColumnValue) Descriptor() ([]byte, []int) {
  976. return file_v1_request_command_proto_rawDescGZIP(), []int{16}
  977. }
  978. func (x *ColumnValue) GetKind() int32 {
  979. if x != nil {
  980. return x.Kind
  981. }
  982. return 0
  983. }
  984. func (x *ColumnValue) GetType() string {
  985. if x != nil {
  986. return x.Type
  987. }
  988. return ""
  989. }
  990. func (m *ColumnValue) GetTypedValue() isColumnValue_TypedValue {
  991. if m != nil {
  992. return m.TypedValue
  993. }
  994. return nil
  995. }
  996. func (x *ColumnValue) GetStringValue() string {
  997. if x, ok := x.GetTypedValue().(*ColumnValue_StringValue); ok {
  998. return x.StringValue
  999. }
  1000. return ""
  1001. }
  1002. func (x *ColumnValue) GetUint32Value() uint32 {
  1003. if x, ok := x.GetTypedValue().(*ColumnValue_Uint32Value); ok {
  1004. return x.Uint32Value
  1005. }
  1006. return 0
  1007. }
  1008. func (x *ColumnValue) GetUint64Value() uint64 {
  1009. if x, ok := x.GetTypedValue().(*ColumnValue_Uint64Value); ok {
  1010. return x.Uint64Value
  1011. }
  1012. return 0
  1013. }
  1014. func (x *ColumnValue) GetFloat64Value() float64 {
  1015. if x, ok := x.GetTypedValue().(*ColumnValue_Float64Value); ok {
  1016. return x.Float64Value
  1017. }
  1018. return 0
  1019. }
  1020. func (x *ColumnValue) GetBoolValue() bool {
  1021. if x, ok := x.GetTypedValue().(*ColumnValue_BoolValue); ok {
  1022. return x.BoolValue
  1023. }
  1024. return false
  1025. }
  1026. type isColumnValue_TypedValue interface {
  1027. isColumnValue_TypedValue()
  1028. }
  1029. type ColumnValue_StringValue struct {
  1030. StringValue string `protobuf:"bytes,3,opt,name=StringValue,proto3,oneof"`
  1031. }
  1032. type ColumnValue_Uint32Value struct {
  1033. Uint32Value uint32 `protobuf:"varint,4,opt,name=Uint32Value,proto3,oneof"`
  1034. }
  1035. type ColumnValue_Uint64Value struct {
  1036. Uint64Value uint64 `protobuf:"varint,5,opt,name=Uint64Value,proto3,oneof"`
  1037. }
  1038. type ColumnValue_Float64Value struct {
  1039. Float64Value float64 `protobuf:"fixed64,6,opt,name=Float64Value,proto3,oneof"`
  1040. }
  1041. type ColumnValue_BoolValue struct {
  1042. BoolValue bool `protobuf:"varint,7,opt,name=BoolValue,proto3,oneof"`
  1043. }
  1044. func (*ColumnValue_StringValue) isColumnValue_TypedValue() {}
  1045. func (*ColumnValue_Uint32Value) isColumnValue_TypedValue() {}
  1046. func (*ColumnValue_Uint64Value) isColumnValue_TypedValue() {}
  1047. func (*ColumnValue_Float64Value) isColumnValue_TypedValue() {}
  1048. func (*ColumnValue_BoolValue) isColumnValue_TypedValue() {}
  1049. var File_v1_request_command_proto protoreflect.FileDescriptor
  1050. var file_v1_request_command_proto_rawDesc = []byte{
  1051. 0x0a, 0x18, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2f, 0x63, 0x6f, 0x6d,
  1052. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x72, 0x65, 0x71, 0x75,
  1053. 0x65, 0x73, 0x74, 0x1a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  1054. 0x6d, 0x77, 0x69, 0x74, 0x6b, 0x6f, 0x77, 0x2f, 0x67, 0x6f, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1055. 0x2d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69,
  1056. 0x64, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd4, 0x01, 0x0a, 0x12,
  1057. 0x41, 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1058. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1059. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a,
  1060. 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61,
  1061. 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68,
  1062. 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  1063. 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69,
  1064. 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73,
  1065. 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  1066. 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x36, 0x0a, 0x12, 0x54, 0x61,
  1067. 0x62, 0x6c, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
  1068. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x12,
  1069. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69,
  1070. 0x62, 0x65, 0x22, 0xb5, 0x04, 0x0a, 0x14, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
  1071. 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x17, 0x54,
  1072. 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52,
  1073. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72,
  1074. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
  1075. 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00,
  1076. 0x52, 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67,
  1077. 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3e, 0x0a, 0x0d, 0x49, 0x6e, 0x73,
  1078. 0x65, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  1079. 0x32, 0x16, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72,
  1080. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x49, 0x6e, 0x73, 0x65,
  1081. 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x12, 0x49, 0x6e, 0x73,
  1082. 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18,
  1083. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1084. 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
  1085. 0x73, 0x74, 0x48, 0x00, 0x52, 0x12, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63,
  1086. 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3e, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65,
  1087. 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1088. 0x16, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  1089. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74,
  1090. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x4d, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65,
  1091. 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x05,
  1092. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44,
  1093. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1094. 0x74, 0x48, 0x00, 0x52, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68,
  1095. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3e, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74,
  1096. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16,
  1097. 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52,
  1098. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1099. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x56, 0x0a, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73,
  1100. 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1101. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1102. 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52,
  1103. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
  1104. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x42,
  1105. 0x09, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x8e, 0x02, 0x0a, 0x0d, 0x49,
  1106. 0x6e, 0x73, 0x65, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a,
  1107. 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1108. 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
  1109. 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1110. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20,
  1111. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62,
  1112. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1113. 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
  1114. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72,
  1115. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1116. 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00,
  1117. 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x08,
  1118. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
  1119. 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f,
  1120. 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1121. 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20,
  1122. 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x8c, 0x01, 0x0a, 0x12,
  1123. 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
  1124. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1125. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a,
  1126. 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x36, 0x0a, 0x05, 0x49, 0x74,
  1127. 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75,
  1128. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x49,
  1129. 0x74, 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65,
  1130. 0x6d, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  1131. 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xa4, 0x01, 0x0a, 0x0f, 0x49,
  1132. 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x3c,
  1133. 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1134. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1135. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66,
  1136. 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07,
  1137. 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1138. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x31,
  1139. 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  1140. 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x49, 0x74,
  1141. 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d,
  1142. 0x73, 0x22, 0x6b, 0x0a, 0x0a, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x12,
  1143. 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x01, 0x20,
  1144. 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79,
  1145. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1146. 0x52, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75,
  1147. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf,
  1148. 0x1f, 0x02, 0x70, 0x00, 0x52, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x22, 0xba,
  1149. 0x02, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1150. 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01,
  1151. 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61,
  1152. 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c,
  1153. 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d,
  1154. 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52,
  1155. 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68,
  1156. 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f,
  1157. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52,
  1158. 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56,
  1159. 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x72, 0x65,
  1160. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  1161. 0x65, 0x73, 0x74, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74,
  1162. 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56,
  1163. 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  1164. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x3c, 0x0a,
  1165. 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  1166. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  1167. 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1168. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x8c, 0x01, 0x0a, 0x12,
  1169. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
  1170. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1171. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a,
  1172. 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x36, 0x0a, 0x05, 0x49, 0x74,
  1173. 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75,
  1174. 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x49,
  1175. 0x74, 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65,
  1176. 0x6d, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01,
  1177. 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xa4, 0x01, 0x0a, 0x0f, 0x44,
  1178. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x3c,
  1179. 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1180. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1181. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66,
  1182. 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07,
  1183. 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1184. 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x31,
  1185. 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  1186. 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74,
  1187. 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d,
  1188. 0x73, 0x22, 0x94, 0x01, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d,
  1189. 0x12, 0x48, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x01, 0x20,
  1190. 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65,
  1191. 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75,
  1192. 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00, 0x52,
  1193. 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65,
  1194. 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  1195. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  1196. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76,
  1197. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xf7, 0x02, 0x0a, 0x0d, 0x55, 0x70, 0x64,
  1198. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61,
  1199. 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1200. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
  1201. 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69,
  1202. 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28,
  1203. 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1204. 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
  1205. 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  1206. 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69,
  1207. 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18,
  1208. 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1209. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4b, 0x65,
  1210. 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf,
  1211. 0x1f, 0x02, 0x20, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12,
  1212. 0x3b, 0x0a, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x05,
  1213. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54,
  1214. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52,
  1215. 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06,
  1216. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73,
  1217. 0x65, 0x72, 0x49, 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1218. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  1219. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  1220. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  1221. 0x38, 0x01, 0x22, 0xba, 0x02, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x79, 0x52, 0x65, 0x71,
  1222. 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
  1223. 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1224. 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15,
  1225. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53,
  1226. 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f,
  1227. 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78,
  1228. 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65,
  1229. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f,
  1230. 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4b, 0x0a, 0x09,
  1231. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1232. 0x25, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x79,
  1233. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1234. 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x20, 0x00, 0x52, 0x09,
  1235. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  1236. 0x72, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  1237. 0x44, 0x1a, 0x3c, 0x0a, 0x0e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x45, 0x6e,
  1238. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1239. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  1240. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22,
  1241. 0x41, 0x0a, 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65,
  1242. 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61,
  1243. 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1244. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
  1245. 0x49, 0x44, 0x22, 0x17, 0x0a, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  1246. 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x35, 0x0a, 0x08, 0x54,
  1247. 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x29, 0x0a, 0x07, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1248. 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65,
  1249. 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1250. 0x6e, 0x73, 0x22, 0x48, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04,
  1251. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65,
  1252. 0x12, 0x2a, 0x0a, 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1253. 0x14, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  1254. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xf5, 0x01, 0x0a,
  1255. 0x0b, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a, 0x04,
  1256. 0x4b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x4b, 0x69, 0x6e, 0x64,
  1257. 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  1258. 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61,
  1259. 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x53, 0x74, 0x72,
  1260. 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74,
  1261. 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52,
  1262. 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x22, 0x0a, 0x0b,
  1263. 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  1264. 0x04, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1265. 0x12, 0x24, 0x0a, 0x0c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1266. 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36,
  1267. 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1e, 0x0a, 0x09, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61,
  1268. 0x6c, 0x75, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x42, 0x6f, 0x6f,
  1269. 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x54, 0x79, 0x70, 0x65, 0x64, 0x56,
  1270. 0x61, 0x6c, 0x75, 0x65, 0x42, 0x20, 0x5a, 0x1e, 0x64, 0x70, 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1271. 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x31, 0x2f, 0x72,
  1272. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1273. }
  1274. var (
  1275. file_v1_request_command_proto_rawDescOnce sync.Once
  1276. file_v1_request_command_proto_rawDescData = file_v1_request_command_proto_rawDesc
  1277. )
  1278. func file_v1_request_command_proto_rawDescGZIP() []byte {
  1279. file_v1_request_command_proto_rawDescOnce.Do(func() {
  1280. file_v1_request_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_request_command_proto_rawDescData)
  1281. })
  1282. return file_v1_request_command_proto_rawDescData
  1283. }
  1284. var file_v1_request_command_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
  1285. var file_v1_request_command_proto_goTypes = []interface{}{
  1286. (*AutoMigrateRequest)(nil), // 0: request.AutoMigrateRequest
  1287. (*TransactionOperation)(nil), // 1: request.TransactionOperation
  1288. (*InsertRequest)(nil), // 2: request.InsertRequest
  1289. (*InsertBatchRequest)(nil), // 3: request.InsertBatchRequest
  1290. (*InsertTableItem)(nil), // 4: request.InsertTableItem
  1291. (*InsertItem)(nil), // 5: request.InsertItem
  1292. (*DeleteRequest)(nil), // 6: request.DeleteRequest
  1293. (*DeleteBatchRequest)(nil), // 7: request.DeleteBatchRequest
  1294. (*DeleteTableItem)(nil), // 8: request.DeleteTableItem
  1295. (*DeleteItem)(nil), // 9: request.DeleteItem
  1296. (*UpdateRequest)(nil), // 10: request.UpdateRequest
  1297. (*ReplayRequest)(nil), // 11: request.ReplayRequest
  1298. (*TransactionBeginRequest)(nil), // 12: request.TransactionBeginRequest
  1299. (*TransactionEndRequest)(nil), // 13: request.TransactionEndRequest
  1300. (*TableRow)(nil), // 14: request.TableRow
  1301. (*Column)(nil), // 15: request.Column
  1302. (*ColumnValue)(nil), // 16: request.ColumnValue
  1303. nil, // 17: request.DeleteRequest.KeyValuesEntry
  1304. nil, // 18: request.DeleteItem.KeyValuesEntry
  1305. nil, // 19: request.UpdateRequest.KeyValuesEntry
  1306. nil, // 20: request.ReplayRequest.KeyValuesEntry
  1307. }
  1308. var file_v1_request_command_proto_depIdxs = []int32{
  1309. 12, // 0: request.TransactionOperation.TransactionBeginRequest:type_name -> request.TransactionBeginRequest
  1310. 2, // 1: request.TransactionOperation.InsertRequest:type_name -> request.InsertRequest
  1311. 3, // 2: request.TransactionOperation.InsertBatchRequest:type_name -> request.InsertBatchRequest
  1312. 6, // 3: request.TransactionOperation.DeleteRequest:type_name -> request.DeleteRequest
  1313. 7, // 4: request.TransactionOperation.DeleteBatchRequest:type_name -> request.DeleteBatchRequest
  1314. 10, // 5: request.TransactionOperation.UpdateRequest:type_name -> request.UpdateRequest
  1315. 13, // 6: request.TransactionOperation.TransactionEndRequest:type_name -> request.TransactionEndRequest
  1316. 14, // 7: request.InsertRequest.TableRow:type_name -> request.TableRow
  1317. 4, // 8: request.InsertBatchRequest.Items:type_name -> request.InsertTableItem
  1318. 5, // 9: request.InsertTableItem.Items:type_name -> request.InsertItem
  1319. 14, // 10: request.InsertItem.TableRow:type_name -> request.TableRow
  1320. 17, // 11: request.DeleteRequest.KeyValues:type_name -> request.DeleteRequest.KeyValuesEntry
  1321. 8, // 12: request.DeleteBatchRequest.Items:type_name -> request.DeleteTableItem
  1322. 9, // 13: request.DeleteTableItem.Items:type_name -> request.DeleteItem
  1323. 18, // 14: request.DeleteItem.KeyValues:type_name -> request.DeleteItem.KeyValuesEntry
  1324. 19, // 15: request.UpdateRequest.KeyValues:type_name -> request.UpdateRequest.KeyValuesEntry
  1325. 14, // 16: request.UpdateRequest.NewTableRow:type_name -> request.TableRow
  1326. 20, // 17: request.ReplayRequest.KeyValues:type_name -> request.ReplayRequest.KeyValuesEntry
  1327. 15, // 18: request.TableRow.Columns:type_name -> request.Column
  1328. 16, // 19: request.Column.Value:type_name -> request.ColumnValue
  1329. 20, // [20:20] is the sub-list for method output_type
  1330. 20, // [20:20] is the sub-list for method input_type
  1331. 20, // [20:20] is the sub-list for extension type_name
  1332. 20, // [20:20] is the sub-list for extension extendee
  1333. 0, // [0:20] is the sub-list for field type_name
  1334. }
  1335. func init() { file_v1_request_command_proto_init() }
  1336. func file_v1_request_command_proto_init() {
  1337. if File_v1_request_command_proto != nil {
  1338. return
  1339. }
  1340. if !protoimpl.UnsafeEnabled {
  1341. file_v1_request_command_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1342. switch v := v.(*AutoMigrateRequest); i {
  1343. case 0:
  1344. return &v.state
  1345. case 1:
  1346. return &v.sizeCache
  1347. case 2:
  1348. return &v.unknownFields
  1349. default:
  1350. return nil
  1351. }
  1352. }
  1353. file_v1_request_command_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1354. switch v := v.(*TransactionOperation); i {
  1355. case 0:
  1356. return &v.state
  1357. case 1:
  1358. return &v.sizeCache
  1359. case 2:
  1360. return &v.unknownFields
  1361. default:
  1362. return nil
  1363. }
  1364. }
  1365. file_v1_request_command_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1366. switch v := v.(*InsertRequest); i {
  1367. case 0:
  1368. return &v.state
  1369. case 1:
  1370. return &v.sizeCache
  1371. case 2:
  1372. return &v.unknownFields
  1373. default:
  1374. return nil
  1375. }
  1376. }
  1377. file_v1_request_command_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1378. switch v := v.(*InsertBatchRequest); i {
  1379. case 0:
  1380. return &v.state
  1381. case 1:
  1382. return &v.sizeCache
  1383. case 2:
  1384. return &v.unknownFields
  1385. default:
  1386. return nil
  1387. }
  1388. }
  1389. file_v1_request_command_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1390. switch v := v.(*InsertTableItem); i {
  1391. case 0:
  1392. return &v.state
  1393. case 1:
  1394. return &v.sizeCache
  1395. case 2:
  1396. return &v.unknownFields
  1397. default:
  1398. return nil
  1399. }
  1400. }
  1401. file_v1_request_command_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1402. switch v := v.(*InsertItem); i {
  1403. case 0:
  1404. return &v.state
  1405. case 1:
  1406. return &v.sizeCache
  1407. case 2:
  1408. return &v.unknownFields
  1409. default:
  1410. return nil
  1411. }
  1412. }
  1413. file_v1_request_command_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1414. switch v := v.(*DeleteRequest); i {
  1415. case 0:
  1416. return &v.state
  1417. case 1:
  1418. return &v.sizeCache
  1419. case 2:
  1420. return &v.unknownFields
  1421. default:
  1422. return nil
  1423. }
  1424. }
  1425. file_v1_request_command_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1426. switch v := v.(*DeleteBatchRequest); i {
  1427. case 0:
  1428. return &v.state
  1429. case 1:
  1430. return &v.sizeCache
  1431. case 2:
  1432. return &v.unknownFields
  1433. default:
  1434. return nil
  1435. }
  1436. }
  1437. file_v1_request_command_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1438. switch v := v.(*DeleteTableItem); i {
  1439. case 0:
  1440. return &v.state
  1441. case 1:
  1442. return &v.sizeCache
  1443. case 2:
  1444. return &v.unknownFields
  1445. default:
  1446. return nil
  1447. }
  1448. }
  1449. file_v1_request_command_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1450. switch v := v.(*DeleteItem); i {
  1451. case 0:
  1452. return &v.state
  1453. case 1:
  1454. return &v.sizeCache
  1455. case 2:
  1456. return &v.unknownFields
  1457. default:
  1458. return nil
  1459. }
  1460. }
  1461. file_v1_request_command_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1462. switch v := v.(*UpdateRequest); i {
  1463. case 0:
  1464. return &v.state
  1465. case 1:
  1466. return &v.sizeCache
  1467. case 2:
  1468. return &v.unknownFields
  1469. default:
  1470. return nil
  1471. }
  1472. }
  1473. file_v1_request_command_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1474. switch v := v.(*ReplayRequest); i {
  1475. case 0:
  1476. return &v.state
  1477. case 1:
  1478. return &v.sizeCache
  1479. case 2:
  1480. return &v.unknownFields
  1481. default:
  1482. return nil
  1483. }
  1484. }
  1485. file_v1_request_command_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1486. switch v := v.(*TransactionBeginRequest); i {
  1487. case 0:
  1488. return &v.state
  1489. case 1:
  1490. return &v.sizeCache
  1491. case 2:
  1492. return &v.unknownFields
  1493. default:
  1494. return nil
  1495. }
  1496. }
  1497. file_v1_request_command_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1498. switch v := v.(*TransactionEndRequest); i {
  1499. case 0:
  1500. return &v.state
  1501. case 1:
  1502. return &v.sizeCache
  1503. case 2:
  1504. return &v.unknownFields
  1505. default:
  1506. return nil
  1507. }
  1508. }
  1509. file_v1_request_command_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1510. switch v := v.(*TableRow); i {
  1511. case 0:
  1512. return &v.state
  1513. case 1:
  1514. return &v.sizeCache
  1515. case 2:
  1516. return &v.unknownFields
  1517. default:
  1518. return nil
  1519. }
  1520. }
  1521. file_v1_request_command_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1522. switch v := v.(*Column); i {
  1523. case 0:
  1524. return &v.state
  1525. case 1:
  1526. return &v.sizeCache
  1527. case 2:
  1528. return &v.unknownFields
  1529. default:
  1530. return nil
  1531. }
  1532. }
  1533. file_v1_request_command_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1534. switch v := v.(*ColumnValue); i {
  1535. case 0:
  1536. return &v.state
  1537. case 1:
  1538. return &v.sizeCache
  1539. case 2:
  1540. return &v.unknownFields
  1541. default:
  1542. return nil
  1543. }
  1544. }
  1545. }
  1546. file_v1_request_command_proto_msgTypes[1].OneofWrappers = []interface{}{
  1547. (*TransactionOperation_TransactionBeginRequest)(nil),
  1548. (*TransactionOperation_InsertRequest)(nil),
  1549. (*TransactionOperation_InsertBatchRequest)(nil),
  1550. (*TransactionOperation_DeleteRequest)(nil),
  1551. (*TransactionOperation_DeleteBatchRequest)(nil),
  1552. (*TransactionOperation_UpdateRequest)(nil),
  1553. (*TransactionOperation_TransactionEndRequest)(nil),
  1554. }
  1555. file_v1_request_command_proto_msgTypes[16].OneofWrappers = []interface{}{
  1556. (*ColumnValue_StringValue)(nil),
  1557. (*ColumnValue_Uint32Value)(nil),
  1558. (*ColumnValue_Uint64Value)(nil),
  1559. (*ColumnValue_Float64Value)(nil),
  1560. (*ColumnValue_BoolValue)(nil),
  1561. }
  1562. type x struct{}
  1563. out := protoimpl.TypeBuilder{
  1564. File: protoimpl.DescBuilder{
  1565. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1566. RawDescriptor: file_v1_request_command_proto_rawDesc,
  1567. NumEnums: 0,
  1568. NumMessages: 21,
  1569. NumExtensions: 0,
  1570. NumServices: 0,
  1571. },
  1572. GoTypes: file_v1_request_command_proto_goTypes,
  1573. DependencyIndexes: file_v1_request_command_proto_depIdxs,
  1574. MessageInfos: file_v1_request_command_proto_msgTypes,
  1575. }.Build()
  1576. File_v1_request_command_proto = out.File
  1577. file_v1_request_command_proto_rawDesc = nil
  1578. file_v1_request_command_proto_goTypes = nil
  1579. file_v1_request_command_proto_depIdxs = nil
  1580. }