command.pb.go 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427
  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. Items []*AutoMigrateItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  26. }
  27. func (x *AutoMigrateRequest) Reset() {
  28. *x = AutoMigrateRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_v1_request_command_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *AutoMigrateRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*AutoMigrateRequest) ProtoMessage() {}
  39. func (x *AutoMigrateRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_v1_request_command_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use AutoMigrateRequest.ProtoReflect.Descriptor instead.
  51. func (*AutoMigrateRequest) Descriptor() ([]byte, []int) {
  52. return file_v1_request_command_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *AutoMigrateRequest) GetDatabaseID() string {
  55. if x != nil {
  56. return x.DatabaseID
  57. }
  58. return ""
  59. }
  60. func (x *AutoMigrateRequest) GetItems() []*AutoMigrateItem {
  61. if x != nil {
  62. return x.Items
  63. }
  64. return nil
  65. }
  66. type AutoMigrateItem struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  71. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  72. TableModelDescribe []byte `protobuf:"bytes,3,opt,name=TableModelDescribe,proto3" json:"TableModelDescribe,omitempty"`
  73. }
  74. func (x *AutoMigrateItem) Reset() {
  75. *x = AutoMigrateItem{}
  76. if protoimpl.UnsafeEnabled {
  77. mi := &file_v1_request_command_proto_msgTypes[1]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. }
  82. func (x *AutoMigrateItem) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*AutoMigrateItem) ProtoMessage() {}
  86. func (x *AutoMigrateItem) ProtoReflect() protoreflect.Message {
  87. mi := &file_v1_request_command_proto_msgTypes[1]
  88. if protoimpl.UnsafeEnabled && x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use AutoMigrateItem.ProtoReflect.Descriptor instead.
  98. func (*AutoMigrateItem) Descriptor() ([]byte, []int) {
  99. return file_v1_request_command_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *AutoMigrateItem) GetTablePrefixWithSchema() string {
  102. if x != nil {
  103. return x.TablePrefixWithSchema
  104. }
  105. return ""
  106. }
  107. func (x *AutoMigrateItem) GetVersion() string {
  108. if x != nil {
  109. return x.Version
  110. }
  111. return ""
  112. }
  113. func (x *AutoMigrateItem) GetTableModelDescribe() []byte {
  114. if x != nil {
  115. return x.TableModelDescribe
  116. }
  117. return nil
  118. }
  119. type TransactionBeginRequest struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  124. }
  125. func (x *TransactionBeginRequest) Reset() {
  126. *x = TransactionBeginRequest{}
  127. if protoimpl.UnsafeEnabled {
  128. mi := &file_v1_request_command_proto_msgTypes[2]
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. ms.StoreMessageInfo(mi)
  131. }
  132. }
  133. func (x *TransactionBeginRequest) String() string {
  134. return protoimpl.X.MessageStringOf(x)
  135. }
  136. func (*TransactionBeginRequest) ProtoMessage() {}
  137. func (x *TransactionBeginRequest) ProtoReflect() protoreflect.Message {
  138. mi := &file_v1_request_command_proto_msgTypes[2]
  139. if protoimpl.UnsafeEnabled && x != nil {
  140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  141. if ms.LoadMessageInfo() == nil {
  142. ms.StoreMessageInfo(mi)
  143. }
  144. return ms
  145. }
  146. return mi.MessageOf(x)
  147. }
  148. // Deprecated: Use TransactionBeginRequest.ProtoReflect.Descriptor instead.
  149. func (*TransactionBeginRequest) Descriptor() ([]byte, []int) {
  150. return file_v1_request_command_proto_rawDescGZIP(), []int{2}
  151. }
  152. func (x *TransactionBeginRequest) GetDatabaseID() string {
  153. if x != nil {
  154. return x.DatabaseID
  155. }
  156. return ""
  157. }
  158. type InsertTxRequest struct {
  159. state protoimpl.MessageState
  160. sizeCache protoimpl.SizeCache
  161. unknownFields protoimpl.UnknownFields
  162. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  163. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  164. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  165. TableRow *TableRow `protobuf:"bytes,4,opt,name=TableRow,proto3" json:"TableRow,omitempty"`
  166. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  167. }
  168. func (x *InsertTxRequest) Reset() {
  169. *x = InsertTxRequest{}
  170. if protoimpl.UnsafeEnabled {
  171. mi := &file_v1_request_command_proto_msgTypes[3]
  172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  173. ms.StoreMessageInfo(mi)
  174. }
  175. }
  176. func (x *InsertTxRequest) String() string {
  177. return protoimpl.X.MessageStringOf(x)
  178. }
  179. func (*InsertTxRequest) ProtoMessage() {}
  180. func (x *InsertTxRequest) ProtoReflect() protoreflect.Message {
  181. mi := &file_v1_request_command_proto_msgTypes[3]
  182. if protoimpl.UnsafeEnabled && x != nil {
  183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  184. if ms.LoadMessageInfo() == nil {
  185. ms.StoreMessageInfo(mi)
  186. }
  187. return ms
  188. }
  189. return mi.MessageOf(x)
  190. }
  191. // Deprecated: Use InsertTxRequest.ProtoReflect.Descriptor instead.
  192. func (*InsertTxRequest) Descriptor() ([]byte, []int) {
  193. return file_v1_request_command_proto_rawDescGZIP(), []int{3}
  194. }
  195. func (x *InsertTxRequest) GetTablePrefixWithSchema() string {
  196. if x != nil {
  197. return x.TablePrefixWithSchema
  198. }
  199. return ""
  200. }
  201. func (x *InsertTxRequest) GetVersion() string {
  202. if x != nil {
  203. return x.Version
  204. }
  205. return ""
  206. }
  207. func (x *InsertTxRequest) GetKeyColumns() []string {
  208. if x != nil {
  209. return x.KeyColumns
  210. }
  211. return nil
  212. }
  213. func (x *InsertTxRequest) GetTableRow() *TableRow {
  214. if x != nil {
  215. return x.TableRow
  216. }
  217. return nil
  218. }
  219. func (x *InsertTxRequest) GetUserID() string {
  220. if x != nil {
  221. return x.UserID
  222. }
  223. return ""
  224. }
  225. type InsertBatchTxRequest struct {
  226. state protoimpl.MessageState
  227. sizeCache protoimpl.SizeCache
  228. unknownFields protoimpl.UnknownFields
  229. Items []*InsertTableRowItem `protobuf:"bytes,1,rep,name=Items,proto3" json:"Items,omitempty"`
  230. UserID string `protobuf:"bytes,2,opt,name=UserID,proto3" json:"UserID,omitempty"`
  231. }
  232. func (x *InsertBatchTxRequest) Reset() {
  233. *x = InsertBatchTxRequest{}
  234. if protoimpl.UnsafeEnabled {
  235. mi := &file_v1_request_command_proto_msgTypes[4]
  236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  237. ms.StoreMessageInfo(mi)
  238. }
  239. }
  240. func (x *InsertBatchTxRequest) String() string {
  241. return protoimpl.X.MessageStringOf(x)
  242. }
  243. func (*InsertBatchTxRequest) ProtoMessage() {}
  244. func (x *InsertBatchTxRequest) ProtoReflect() protoreflect.Message {
  245. mi := &file_v1_request_command_proto_msgTypes[4]
  246. if protoimpl.UnsafeEnabled && x != nil {
  247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  248. if ms.LoadMessageInfo() == nil {
  249. ms.StoreMessageInfo(mi)
  250. }
  251. return ms
  252. }
  253. return mi.MessageOf(x)
  254. }
  255. // Deprecated: Use InsertBatchTxRequest.ProtoReflect.Descriptor instead.
  256. func (*InsertBatchTxRequest) Descriptor() ([]byte, []int) {
  257. return file_v1_request_command_proto_rawDescGZIP(), []int{4}
  258. }
  259. func (x *InsertBatchTxRequest) GetItems() []*InsertTableRowItem {
  260. if x != nil {
  261. return x.Items
  262. }
  263. return nil
  264. }
  265. func (x *InsertBatchTxRequest) GetUserID() string {
  266. if x != nil {
  267. return x.UserID
  268. }
  269. return ""
  270. }
  271. type DeleteTxRequest struct {
  272. state protoimpl.MessageState
  273. sizeCache protoimpl.SizeCache
  274. unknownFields protoimpl.UnknownFields
  275. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  276. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  277. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  278. KeyValues []string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  279. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  280. }
  281. func (x *DeleteTxRequest) Reset() {
  282. *x = DeleteTxRequest{}
  283. if protoimpl.UnsafeEnabled {
  284. mi := &file_v1_request_command_proto_msgTypes[5]
  285. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  286. ms.StoreMessageInfo(mi)
  287. }
  288. }
  289. func (x *DeleteTxRequest) String() string {
  290. return protoimpl.X.MessageStringOf(x)
  291. }
  292. func (*DeleteTxRequest) ProtoMessage() {}
  293. func (x *DeleteTxRequest) ProtoReflect() protoreflect.Message {
  294. mi := &file_v1_request_command_proto_msgTypes[5]
  295. if protoimpl.UnsafeEnabled && x != nil {
  296. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  297. if ms.LoadMessageInfo() == nil {
  298. ms.StoreMessageInfo(mi)
  299. }
  300. return ms
  301. }
  302. return mi.MessageOf(x)
  303. }
  304. // Deprecated: Use DeleteTxRequest.ProtoReflect.Descriptor instead.
  305. func (*DeleteTxRequest) Descriptor() ([]byte, []int) {
  306. return file_v1_request_command_proto_rawDescGZIP(), []int{5}
  307. }
  308. func (x *DeleteTxRequest) GetTablePrefixWithSchema() string {
  309. if x != nil {
  310. return x.TablePrefixWithSchema
  311. }
  312. return ""
  313. }
  314. func (x *DeleteTxRequest) GetVersion() string {
  315. if x != nil {
  316. return x.Version
  317. }
  318. return ""
  319. }
  320. func (x *DeleteTxRequest) GetKeyColumns() []string {
  321. if x != nil {
  322. return x.KeyColumns
  323. }
  324. return nil
  325. }
  326. func (x *DeleteTxRequest) GetKeyValues() []string {
  327. if x != nil {
  328. return x.KeyValues
  329. }
  330. return nil
  331. }
  332. func (x *DeleteTxRequest) GetUserID() string {
  333. if x != nil {
  334. return x.UserID
  335. }
  336. return ""
  337. }
  338. type DeleteWhereTxRequest struct {
  339. state protoimpl.MessageState
  340. sizeCache protoimpl.SizeCache
  341. unknownFields protoimpl.UnknownFields
  342. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  343. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  344. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  345. Where []byte `protobuf:"bytes,4,opt,name=Where,proto3" json:"Where,omitempty"`
  346. UserID string `protobuf:"bytes,5,opt,name=UserID,proto3" json:"UserID,omitempty"`
  347. }
  348. func (x *DeleteWhereTxRequest) Reset() {
  349. *x = DeleteWhereTxRequest{}
  350. if protoimpl.UnsafeEnabled {
  351. mi := &file_v1_request_command_proto_msgTypes[6]
  352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  353. ms.StoreMessageInfo(mi)
  354. }
  355. }
  356. func (x *DeleteWhereTxRequest) String() string {
  357. return protoimpl.X.MessageStringOf(x)
  358. }
  359. func (*DeleteWhereTxRequest) ProtoMessage() {}
  360. func (x *DeleteWhereTxRequest) ProtoReflect() protoreflect.Message {
  361. mi := &file_v1_request_command_proto_msgTypes[6]
  362. if protoimpl.UnsafeEnabled && x != nil {
  363. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  364. if ms.LoadMessageInfo() == nil {
  365. ms.StoreMessageInfo(mi)
  366. }
  367. return ms
  368. }
  369. return mi.MessageOf(x)
  370. }
  371. // Deprecated: Use DeleteWhereTxRequest.ProtoReflect.Descriptor instead.
  372. func (*DeleteWhereTxRequest) Descriptor() ([]byte, []int) {
  373. return file_v1_request_command_proto_rawDescGZIP(), []int{6}
  374. }
  375. func (x *DeleteWhereTxRequest) GetTablePrefixWithSchema() string {
  376. if x != nil {
  377. return x.TablePrefixWithSchema
  378. }
  379. return ""
  380. }
  381. func (x *DeleteWhereTxRequest) GetVersion() string {
  382. if x != nil {
  383. return x.Version
  384. }
  385. return ""
  386. }
  387. func (x *DeleteWhereTxRequest) GetKeyColumns() []string {
  388. if x != nil {
  389. return x.KeyColumns
  390. }
  391. return nil
  392. }
  393. func (x *DeleteWhereTxRequest) GetWhere() []byte {
  394. if x != nil {
  395. return x.Where
  396. }
  397. return nil
  398. }
  399. func (x *DeleteWhereTxRequest) GetUserID() string {
  400. if x != nil {
  401. return x.UserID
  402. }
  403. return ""
  404. }
  405. type UpdateTxRequest struct {
  406. state protoimpl.MessageState
  407. sizeCache protoimpl.SizeCache
  408. unknownFields protoimpl.UnknownFields
  409. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  410. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  411. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  412. KeyValues []string `protobuf:"bytes,4,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  413. NewTableRow *TableRow `protobuf:"bytes,5,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  414. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  415. }
  416. func (x *UpdateTxRequest) Reset() {
  417. *x = UpdateTxRequest{}
  418. if protoimpl.UnsafeEnabled {
  419. mi := &file_v1_request_command_proto_msgTypes[7]
  420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  421. ms.StoreMessageInfo(mi)
  422. }
  423. }
  424. func (x *UpdateTxRequest) String() string {
  425. return protoimpl.X.MessageStringOf(x)
  426. }
  427. func (*UpdateTxRequest) ProtoMessage() {}
  428. func (x *UpdateTxRequest) ProtoReflect() protoreflect.Message {
  429. mi := &file_v1_request_command_proto_msgTypes[7]
  430. if protoimpl.UnsafeEnabled && x != nil {
  431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  432. if ms.LoadMessageInfo() == nil {
  433. ms.StoreMessageInfo(mi)
  434. }
  435. return ms
  436. }
  437. return mi.MessageOf(x)
  438. }
  439. // Deprecated: Use UpdateTxRequest.ProtoReflect.Descriptor instead.
  440. func (*UpdateTxRequest) Descriptor() ([]byte, []int) {
  441. return file_v1_request_command_proto_rawDescGZIP(), []int{7}
  442. }
  443. func (x *UpdateTxRequest) GetTablePrefixWithSchema() string {
  444. if x != nil {
  445. return x.TablePrefixWithSchema
  446. }
  447. return ""
  448. }
  449. func (x *UpdateTxRequest) GetVersion() string {
  450. if x != nil {
  451. return x.Version
  452. }
  453. return ""
  454. }
  455. func (x *UpdateTxRequest) GetKeyColumns() []string {
  456. if x != nil {
  457. return x.KeyColumns
  458. }
  459. return nil
  460. }
  461. func (x *UpdateTxRequest) GetKeyValues() []string {
  462. if x != nil {
  463. return x.KeyValues
  464. }
  465. return nil
  466. }
  467. func (x *UpdateTxRequest) GetNewTableRow() *TableRow {
  468. if x != nil {
  469. return x.NewTableRow
  470. }
  471. return nil
  472. }
  473. func (x *UpdateTxRequest) GetUserID() string {
  474. if x != nil {
  475. return x.UserID
  476. }
  477. return ""
  478. }
  479. type UpdateWhereTxRequest struct {
  480. state protoimpl.MessageState
  481. sizeCache protoimpl.SizeCache
  482. unknownFields protoimpl.UnknownFields
  483. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  484. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  485. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  486. Where []byte `protobuf:"bytes,4,opt,name=Where,proto3" json:"Where,omitempty"`
  487. NewTableRow *TableRow `protobuf:"bytes,5,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  488. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  489. }
  490. func (x *UpdateWhereTxRequest) Reset() {
  491. *x = UpdateWhereTxRequest{}
  492. if protoimpl.UnsafeEnabled {
  493. mi := &file_v1_request_command_proto_msgTypes[8]
  494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  495. ms.StoreMessageInfo(mi)
  496. }
  497. }
  498. func (x *UpdateWhereTxRequest) String() string {
  499. return protoimpl.X.MessageStringOf(x)
  500. }
  501. func (*UpdateWhereTxRequest) ProtoMessage() {}
  502. func (x *UpdateWhereTxRequest) ProtoReflect() protoreflect.Message {
  503. mi := &file_v1_request_command_proto_msgTypes[8]
  504. if protoimpl.UnsafeEnabled && x != nil {
  505. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  506. if ms.LoadMessageInfo() == nil {
  507. ms.StoreMessageInfo(mi)
  508. }
  509. return ms
  510. }
  511. return mi.MessageOf(x)
  512. }
  513. // Deprecated: Use UpdateWhereTxRequest.ProtoReflect.Descriptor instead.
  514. func (*UpdateWhereTxRequest) Descriptor() ([]byte, []int) {
  515. return file_v1_request_command_proto_rawDescGZIP(), []int{8}
  516. }
  517. func (x *UpdateWhereTxRequest) GetTablePrefixWithSchema() string {
  518. if x != nil {
  519. return x.TablePrefixWithSchema
  520. }
  521. return ""
  522. }
  523. func (x *UpdateWhereTxRequest) GetVersion() string {
  524. if x != nil {
  525. return x.Version
  526. }
  527. return ""
  528. }
  529. func (x *UpdateWhereTxRequest) GetKeyColumns() []string {
  530. if x != nil {
  531. return x.KeyColumns
  532. }
  533. return nil
  534. }
  535. func (x *UpdateWhereTxRequest) GetWhere() []byte {
  536. if x != nil {
  537. return x.Where
  538. }
  539. return nil
  540. }
  541. func (x *UpdateWhereTxRequest) GetNewTableRow() *TableRow {
  542. if x != nil {
  543. return x.NewTableRow
  544. }
  545. return nil
  546. }
  547. func (x *UpdateWhereTxRequest) GetUserID() string {
  548. if x != nil {
  549. return x.UserID
  550. }
  551. return ""
  552. }
  553. type TransactionEndRequest struct {
  554. state protoimpl.MessageState
  555. sizeCache protoimpl.SizeCache
  556. unknownFields protoimpl.UnknownFields
  557. }
  558. func (x *TransactionEndRequest) Reset() {
  559. *x = TransactionEndRequest{}
  560. if protoimpl.UnsafeEnabled {
  561. mi := &file_v1_request_command_proto_msgTypes[9]
  562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  563. ms.StoreMessageInfo(mi)
  564. }
  565. }
  566. func (x *TransactionEndRequest) String() string {
  567. return protoimpl.X.MessageStringOf(x)
  568. }
  569. func (*TransactionEndRequest) ProtoMessage() {}
  570. func (x *TransactionEndRequest) ProtoReflect() protoreflect.Message {
  571. mi := &file_v1_request_command_proto_msgTypes[9]
  572. if protoimpl.UnsafeEnabled && x != nil {
  573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  574. if ms.LoadMessageInfo() == nil {
  575. ms.StoreMessageInfo(mi)
  576. }
  577. return ms
  578. }
  579. return mi.MessageOf(x)
  580. }
  581. // Deprecated: Use TransactionEndRequest.ProtoReflect.Descriptor instead.
  582. func (*TransactionEndRequest) Descriptor() ([]byte, []int) {
  583. return file_v1_request_command_proto_rawDescGZIP(), []int{9}
  584. }
  585. type TransactionOperation struct {
  586. state protoimpl.MessageState
  587. sizeCache protoimpl.SizeCache
  588. unknownFields protoimpl.UnknownFields
  589. // Types that are assignable to Request:
  590. //
  591. // *TransactionOperation_TransactionBeginRequest
  592. // *TransactionOperation_InsertTxRequest
  593. // *TransactionOperation_InsertBatchTxRequest
  594. // *TransactionOperation_DeleteTxRequest
  595. // *TransactionOperation_DeleteWhereTxRequest
  596. // *TransactionOperation_UpdateTxRequest
  597. // *TransactionOperation_UpdateWhereTxRequest
  598. // *TransactionOperation_TransactionEndRequest
  599. Request isTransactionOperation_Request `protobuf_oneof:"Request"`
  600. }
  601. func (x *TransactionOperation) Reset() {
  602. *x = TransactionOperation{}
  603. if protoimpl.UnsafeEnabled {
  604. mi := &file_v1_request_command_proto_msgTypes[10]
  605. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  606. ms.StoreMessageInfo(mi)
  607. }
  608. }
  609. func (x *TransactionOperation) String() string {
  610. return protoimpl.X.MessageStringOf(x)
  611. }
  612. func (*TransactionOperation) ProtoMessage() {}
  613. func (x *TransactionOperation) ProtoReflect() protoreflect.Message {
  614. mi := &file_v1_request_command_proto_msgTypes[10]
  615. if protoimpl.UnsafeEnabled && x != nil {
  616. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  617. if ms.LoadMessageInfo() == nil {
  618. ms.StoreMessageInfo(mi)
  619. }
  620. return ms
  621. }
  622. return mi.MessageOf(x)
  623. }
  624. // Deprecated: Use TransactionOperation.ProtoReflect.Descriptor instead.
  625. func (*TransactionOperation) Descriptor() ([]byte, []int) {
  626. return file_v1_request_command_proto_rawDescGZIP(), []int{10}
  627. }
  628. func (m *TransactionOperation) GetRequest() isTransactionOperation_Request {
  629. if m != nil {
  630. return m.Request
  631. }
  632. return nil
  633. }
  634. func (x *TransactionOperation) GetTransactionBeginRequest() *TransactionBeginRequest {
  635. if x, ok := x.GetRequest().(*TransactionOperation_TransactionBeginRequest); ok {
  636. return x.TransactionBeginRequest
  637. }
  638. return nil
  639. }
  640. func (x *TransactionOperation) GetInsertTxRequest() *InsertTxRequest {
  641. if x, ok := x.GetRequest().(*TransactionOperation_InsertTxRequest); ok {
  642. return x.InsertTxRequest
  643. }
  644. return nil
  645. }
  646. func (x *TransactionOperation) GetInsertBatchTxRequest() *InsertBatchTxRequest {
  647. if x, ok := x.GetRequest().(*TransactionOperation_InsertBatchTxRequest); ok {
  648. return x.InsertBatchTxRequest
  649. }
  650. return nil
  651. }
  652. func (x *TransactionOperation) GetDeleteTxRequest() *DeleteTxRequest {
  653. if x, ok := x.GetRequest().(*TransactionOperation_DeleteTxRequest); ok {
  654. return x.DeleteTxRequest
  655. }
  656. return nil
  657. }
  658. func (x *TransactionOperation) GetDeleteWhereTxRequest() *DeleteWhereTxRequest {
  659. if x, ok := x.GetRequest().(*TransactionOperation_DeleteWhereTxRequest); ok {
  660. return x.DeleteWhereTxRequest
  661. }
  662. return nil
  663. }
  664. func (x *TransactionOperation) GetUpdateTxRequest() *UpdateTxRequest {
  665. if x, ok := x.GetRequest().(*TransactionOperation_UpdateTxRequest); ok {
  666. return x.UpdateTxRequest
  667. }
  668. return nil
  669. }
  670. func (x *TransactionOperation) GetUpdateWhereTxRequest() *UpdateWhereTxRequest {
  671. if x, ok := x.GetRequest().(*TransactionOperation_UpdateWhereTxRequest); ok {
  672. return x.UpdateWhereTxRequest
  673. }
  674. return nil
  675. }
  676. func (x *TransactionOperation) GetTransactionEndRequest() *TransactionEndRequest {
  677. if x, ok := x.GetRequest().(*TransactionOperation_TransactionEndRequest); ok {
  678. return x.TransactionEndRequest
  679. }
  680. return nil
  681. }
  682. type isTransactionOperation_Request interface {
  683. isTransactionOperation_Request()
  684. }
  685. type TransactionOperation_TransactionBeginRequest struct {
  686. TransactionBeginRequest *TransactionBeginRequest `protobuf:"bytes,1,opt,name=TransactionBeginRequest,proto3,oneof"`
  687. }
  688. type TransactionOperation_InsertTxRequest struct {
  689. InsertTxRequest *InsertTxRequest `protobuf:"bytes,2,opt,name=InsertTxRequest,proto3,oneof"`
  690. }
  691. type TransactionOperation_InsertBatchTxRequest struct {
  692. InsertBatchTxRequest *InsertBatchTxRequest `protobuf:"bytes,3,opt,name=InsertBatchTxRequest,proto3,oneof"`
  693. }
  694. type TransactionOperation_DeleteTxRequest struct {
  695. DeleteTxRequest *DeleteTxRequest `protobuf:"bytes,4,opt,name=DeleteTxRequest,proto3,oneof"`
  696. }
  697. type TransactionOperation_DeleteWhereTxRequest struct {
  698. DeleteWhereTxRequest *DeleteWhereTxRequest `protobuf:"bytes,5,opt,name=DeleteWhereTxRequest,proto3,oneof"`
  699. }
  700. type TransactionOperation_UpdateTxRequest struct {
  701. UpdateTxRequest *UpdateTxRequest `protobuf:"bytes,6,opt,name=UpdateTxRequest,proto3,oneof"`
  702. }
  703. type TransactionOperation_UpdateWhereTxRequest struct {
  704. UpdateWhereTxRequest *UpdateWhereTxRequest `protobuf:"bytes,7,opt,name=UpdateWhereTxRequest,proto3,oneof"`
  705. }
  706. type TransactionOperation_TransactionEndRequest struct {
  707. TransactionEndRequest *TransactionEndRequest `protobuf:"bytes,8,opt,name=TransactionEndRequest,proto3,oneof"`
  708. }
  709. func (*TransactionOperation_TransactionBeginRequest) isTransactionOperation_Request() {}
  710. func (*TransactionOperation_InsertTxRequest) isTransactionOperation_Request() {}
  711. func (*TransactionOperation_InsertBatchTxRequest) isTransactionOperation_Request() {}
  712. func (*TransactionOperation_DeleteTxRequest) isTransactionOperation_Request() {}
  713. func (*TransactionOperation_DeleteWhereTxRequest) isTransactionOperation_Request() {}
  714. func (*TransactionOperation_UpdateTxRequest) isTransactionOperation_Request() {}
  715. func (*TransactionOperation_UpdateWhereTxRequest) isTransactionOperation_Request() {}
  716. func (*TransactionOperation_TransactionEndRequest) isTransactionOperation_Request() {}
  717. type InsertRequest struct {
  718. state protoimpl.MessageState
  719. sizeCache protoimpl.SizeCache
  720. unknownFields protoimpl.UnknownFields
  721. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  722. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  723. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  724. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  725. TableRow *TableRow `protobuf:"bytes,5,opt,name=TableRow,proto3" json:"TableRow,omitempty"`
  726. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  727. }
  728. func (x *InsertRequest) Reset() {
  729. *x = InsertRequest{}
  730. if protoimpl.UnsafeEnabled {
  731. mi := &file_v1_request_command_proto_msgTypes[11]
  732. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  733. ms.StoreMessageInfo(mi)
  734. }
  735. }
  736. func (x *InsertRequest) String() string {
  737. return protoimpl.X.MessageStringOf(x)
  738. }
  739. func (*InsertRequest) ProtoMessage() {}
  740. func (x *InsertRequest) ProtoReflect() protoreflect.Message {
  741. mi := &file_v1_request_command_proto_msgTypes[11]
  742. if protoimpl.UnsafeEnabled && x != nil {
  743. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  744. if ms.LoadMessageInfo() == nil {
  745. ms.StoreMessageInfo(mi)
  746. }
  747. return ms
  748. }
  749. return mi.MessageOf(x)
  750. }
  751. // Deprecated: Use InsertRequest.ProtoReflect.Descriptor instead.
  752. func (*InsertRequest) Descriptor() ([]byte, []int) {
  753. return file_v1_request_command_proto_rawDescGZIP(), []int{11}
  754. }
  755. func (x *InsertRequest) GetDatabaseID() string {
  756. if x != nil {
  757. return x.DatabaseID
  758. }
  759. return ""
  760. }
  761. func (x *InsertRequest) GetTablePrefixWithSchema() string {
  762. if x != nil {
  763. return x.TablePrefixWithSchema
  764. }
  765. return ""
  766. }
  767. func (x *InsertRequest) GetVersion() string {
  768. if x != nil {
  769. return x.Version
  770. }
  771. return ""
  772. }
  773. func (x *InsertRequest) GetKeyColumns() []string {
  774. if x != nil {
  775. return x.KeyColumns
  776. }
  777. return nil
  778. }
  779. func (x *InsertRequest) GetTableRow() *TableRow {
  780. if x != nil {
  781. return x.TableRow
  782. }
  783. return nil
  784. }
  785. func (x *InsertRequest) GetUserID() string {
  786. if x != nil {
  787. return x.UserID
  788. }
  789. return ""
  790. }
  791. type InsertBatchRequest struct {
  792. state protoimpl.MessageState
  793. sizeCache protoimpl.SizeCache
  794. unknownFields protoimpl.UnknownFields
  795. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  796. Items []*InsertTableRowItem `protobuf:"bytes,2,rep,name=Items,proto3" json:"Items,omitempty"`
  797. UserID string `protobuf:"bytes,3,opt,name=UserID,proto3" json:"UserID,omitempty"`
  798. }
  799. func (x *InsertBatchRequest) Reset() {
  800. *x = InsertBatchRequest{}
  801. if protoimpl.UnsafeEnabled {
  802. mi := &file_v1_request_command_proto_msgTypes[12]
  803. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  804. ms.StoreMessageInfo(mi)
  805. }
  806. }
  807. func (x *InsertBatchRequest) String() string {
  808. return protoimpl.X.MessageStringOf(x)
  809. }
  810. func (*InsertBatchRequest) ProtoMessage() {}
  811. func (x *InsertBatchRequest) ProtoReflect() protoreflect.Message {
  812. mi := &file_v1_request_command_proto_msgTypes[12]
  813. if protoimpl.UnsafeEnabled && x != nil {
  814. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  815. if ms.LoadMessageInfo() == nil {
  816. ms.StoreMessageInfo(mi)
  817. }
  818. return ms
  819. }
  820. return mi.MessageOf(x)
  821. }
  822. // Deprecated: Use InsertBatchRequest.ProtoReflect.Descriptor instead.
  823. func (*InsertBatchRequest) Descriptor() ([]byte, []int) {
  824. return file_v1_request_command_proto_rawDescGZIP(), []int{12}
  825. }
  826. func (x *InsertBatchRequest) GetDatabaseID() string {
  827. if x != nil {
  828. return x.DatabaseID
  829. }
  830. return ""
  831. }
  832. func (x *InsertBatchRequest) GetItems() []*InsertTableRowItem {
  833. if x != nil {
  834. return x.Items
  835. }
  836. return nil
  837. }
  838. func (x *InsertBatchRequest) GetUserID() string {
  839. if x != nil {
  840. return x.UserID
  841. }
  842. return ""
  843. }
  844. type InsertTableRowItem struct {
  845. state protoimpl.MessageState
  846. sizeCache protoimpl.SizeCache
  847. unknownFields protoimpl.UnknownFields
  848. TablePrefixWithSchema string `protobuf:"bytes,1,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  849. Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
  850. KeyColumns []string `protobuf:"bytes,3,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  851. TableRows []*TableRow `protobuf:"bytes,4,rep,name=TableRows,proto3" json:"TableRows,omitempty"`
  852. }
  853. func (x *InsertTableRowItem) Reset() {
  854. *x = InsertTableRowItem{}
  855. if protoimpl.UnsafeEnabled {
  856. mi := &file_v1_request_command_proto_msgTypes[13]
  857. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  858. ms.StoreMessageInfo(mi)
  859. }
  860. }
  861. func (x *InsertTableRowItem) String() string {
  862. return protoimpl.X.MessageStringOf(x)
  863. }
  864. func (*InsertTableRowItem) ProtoMessage() {}
  865. func (x *InsertTableRowItem) ProtoReflect() protoreflect.Message {
  866. mi := &file_v1_request_command_proto_msgTypes[13]
  867. if protoimpl.UnsafeEnabled && x != nil {
  868. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  869. if ms.LoadMessageInfo() == nil {
  870. ms.StoreMessageInfo(mi)
  871. }
  872. return ms
  873. }
  874. return mi.MessageOf(x)
  875. }
  876. // Deprecated: Use InsertTableRowItem.ProtoReflect.Descriptor instead.
  877. func (*InsertTableRowItem) Descriptor() ([]byte, []int) {
  878. return file_v1_request_command_proto_rawDescGZIP(), []int{13}
  879. }
  880. func (x *InsertTableRowItem) GetTablePrefixWithSchema() string {
  881. if x != nil {
  882. return x.TablePrefixWithSchema
  883. }
  884. return ""
  885. }
  886. func (x *InsertTableRowItem) GetVersion() string {
  887. if x != nil {
  888. return x.Version
  889. }
  890. return ""
  891. }
  892. func (x *InsertTableRowItem) GetKeyColumns() []string {
  893. if x != nil {
  894. return x.KeyColumns
  895. }
  896. return nil
  897. }
  898. func (x *InsertTableRowItem) GetTableRows() []*TableRow {
  899. if x != nil {
  900. return x.TableRows
  901. }
  902. return nil
  903. }
  904. type DeleteRequest struct {
  905. state protoimpl.MessageState
  906. sizeCache protoimpl.SizeCache
  907. unknownFields protoimpl.UnknownFields
  908. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  909. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  910. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  911. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  912. KeyValues []string `protobuf:"bytes,5,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  913. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  914. }
  915. func (x *DeleteRequest) Reset() {
  916. *x = DeleteRequest{}
  917. if protoimpl.UnsafeEnabled {
  918. mi := &file_v1_request_command_proto_msgTypes[14]
  919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  920. ms.StoreMessageInfo(mi)
  921. }
  922. }
  923. func (x *DeleteRequest) String() string {
  924. return protoimpl.X.MessageStringOf(x)
  925. }
  926. func (*DeleteRequest) ProtoMessage() {}
  927. func (x *DeleteRequest) ProtoReflect() protoreflect.Message {
  928. mi := &file_v1_request_command_proto_msgTypes[14]
  929. if protoimpl.UnsafeEnabled && x != nil {
  930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  931. if ms.LoadMessageInfo() == nil {
  932. ms.StoreMessageInfo(mi)
  933. }
  934. return ms
  935. }
  936. return mi.MessageOf(x)
  937. }
  938. // Deprecated: Use DeleteRequest.ProtoReflect.Descriptor instead.
  939. func (*DeleteRequest) Descriptor() ([]byte, []int) {
  940. return file_v1_request_command_proto_rawDescGZIP(), []int{14}
  941. }
  942. func (x *DeleteRequest) GetDatabaseID() string {
  943. if x != nil {
  944. return x.DatabaseID
  945. }
  946. return ""
  947. }
  948. func (x *DeleteRequest) GetTablePrefixWithSchema() string {
  949. if x != nil {
  950. return x.TablePrefixWithSchema
  951. }
  952. return ""
  953. }
  954. func (x *DeleteRequest) GetVersion() string {
  955. if x != nil {
  956. return x.Version
  957. }
  958. return ""
  959. }
  960. func (x *DeleteRequest) GetKeyColumns() []string {
  961. if x != nil {
  962. return x.KeyColumns
  963. }
  964. return nil
  965. }
  966. func (x *DeleteRequest) GetKeyValues() []string {
  967. if x != nil {
  968. return x.KeyValues
  969. }
  970. return nil
  971. }
  972. func (x *DeleteRequest) GetUserID() string {
  973. if x != nil {
  974. return x.UserID
  975. }
  976. return ""
  977. }
  978. type DeleteWhereRequest struct {
  979. state protoimpl.MessageState
  980. sizeCache protoimpl.SizeCache
  981. unknownFields protoimpl.UnknownFields
  982. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  983. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  984. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  985. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  986. Where []byte `protobuf:"bytes,5,opt,name=Where,proto3" json:"Where,omitempty"`
  987. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  988. }
  989. func (x *DeleteWhereRequest) Reset() {
  990. *x = DeleteWhereRequest{}
  991. if protoimpl.UnsafeEnabled {
  992. mi := &file_v1_request_command_proto_msgTypes[15]
  993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  994. ms.StoreMessageInfo(mi)
  995. }
  996. }
  997. func (x *DeleteWhereRequest) String() string {
  998. return protoimpl.X.MessageStringOf(x)
  999. }
  1000. func (*DeleteWhereRequest) ProtoMessage() {}
  1001. func (x *DeleteWhereRequest) ProtoReflect() protoreflect.Message {
  1002. mi := &file_v1_request_command_proto_msgTypes[15]
  1003. if protoimpl.UnsafeEnabled && x != nil {
  1004. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1005. if ms.LoadMessageInfo() == nil {
  1006. ms.StoreMessageInfo(mi)
  1007. }
  1008. return ms
  1009. }
  1010. return mi.MessageOf(x)
  1011. }
  1012. // Deprecated: Use DeleteWhereRequest.ProtoReflect.Descriptor instead.
  1013. func (*DeleteWhereRequest) Descriptor() ([]byte, []int) {
  1014. return file_v1_request_command_proto_rawDescGZIP(), []int{15}
  1015. }
  1016. func (x *DeleteWhereRequest) GetDatabaseID() string {
  1017. if x != nil {
  1018. return x.DatabaseID
  1019. }
  1020. return ""
  1021. }
  1022. func (x *DeleteWhereRequest) GetTablePrefixWithSchema() string {
  1023. if x != nil {
  1024. return x.TablePrefixWithSchema
  1025. }
  1026. return ""
  1027. }
  1028. func (x *DeleteWhereRequest) GetVersion() string {
  1029. if x != nil {
  1030. return x.Version
  1031. }
  1032. return ""
  1033. }
  1034. func (x *DeleteWhereRequest) GetKeyColumns() []string {
  1035. if x != nil {
  1036. return x.KeyColumns
  1037. }
  1038. return nil
  1039. }
  1040. func (x *DeleteWhereRequest) GetWhere() []byte {
  1041. if x != nil {
  1042. return x.Where
  1043. }
  1044. return nil
  1045. }
  1046. func (x *DeleteWhereRequest) GetUserID() string {
  1047. if x != nil {
  1048. return x.UserID
  1049. }
  1050. return ""
  1051. }
  1052. type UpdateRequest struct {
  1053. state protoimpl.MessageState
  1054. sizeCache protoimpl.SizeCache
  1055. unknownFields protoimpl.UnknownFields
  1056. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  1057. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  1058. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  1059. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  1060. KeyValues []string `protobuf:"bytes,5,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  1061. NewTableRow *TableRow `protobuf:"bytes,6,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  1062. UserID string `protobuf:"bytes,7,opt,name=UserID,proto3" json:"UserID,omitempty"`
  1063. }
  1064. func (x *UpdateRequest) Reset() {
  1065. *x = UpdateRequest{}
  1066. if protoimpl.UnsafeEnabled {
  1067. mi := &file_v1_request_command_proto_msgTypes[16]
  1068. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1069. ms.StoreMessageInfo(mi)
  1070. }
  1071. }
  1072. func (x *UpdateRequest) String() string {
  1073. return protoimpl.X.MessageStringOf(x)
  1074. }
  1075. func (*UpdateRequest) ProtoMessage() {}
  1076. func (x *UpdateRequest) ProtoReflect() protoreflect.Message {
  1077. mi := &file_v1_request_command_proto_msgTypes[16]
  1078. if protoimpl.UnsafeEnabled && x != nil {
  1079. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1080. if ms.LoadMessageInfo() == nil {
  1081. ms.StoreMessageInfo(mi)
  1082. }
  1083. return ms
  1084. }
  1085. return mi.MessageOf(x)
  1086. }
  1087. // Deprecated: Use UpdateRequest.ProtoReflect.Descriptor instead.
  1088. func (*UpdateRequest) Descriptor() ([]byte, []int) {
  1089. return file_v1_request_command_proto_rawDescGZIP(), []int{16}
  1090. }
  1091. func (x *UpdateRequest) GetDatabaseID() string {
  1092. if x != nil {
  1093. return x.DatabaseID
  1094. }
  1095. return ""
  1096. }
  1097. func (x *UpdateRequest) GetTablePrefixWithSchema() string {
  1098. if x != nil {
  1099. return x.TablePrefixWithSchema
  1100. }
  1101. return ""
  1102. }
  1103. func (x *UpdateRequest) GetVersion() string {
  1104. if x != nil {
  1105. return x.Version
  1106. }
  1107. return ""
  1108. }
  1109. func (x *UpdateRequest) GetKeyColumns() []string {
  1110. if x != nil {
  1111. return x.KeyColumns
  1112. }
  1113. return nil
  1114. }
  1115. func (x *UpdateRequest) GetKeyValues() []string {
  1116. if x != nil {
  1117. return x.KeyValues
  1118. }
  1119. return nil
  1120. }
  1121. func (x *UpdateRequest) GetNewTableRow() *TableRow {
  1122. if x != nil {
  1123. return x.NewTableRow
  1124. }
  1125. return nil
  1126. }
  1127. func (x *UpdateRequest) GetUserID() string {
  1128. if x != nil {
  1129. return x.UserID
  1130. }
  1131. return ""
  1132. }
  1133. type UpdateWhereRequest struct {
  1134. state protoimpl.MessageState
  1135. sizeCache protoimpl.SizeCache
  1136. unknownFields protoimpl.UnknownFields
  1137. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  1138. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  1139. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  1140. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  1141. Where []byte `protobuf:"bytes,5,opt,name=Where,proto3" json:"Where,omitempty"`
  1142. NewTableRow *TableRow `protobuf:"bytes,6,opt,name=NewTableRow,proto3" json:"NewTableRow,omitempty"`
  1143. UserID string `protobuf:"bytes,7,opt,name=UserID,proto3" json:"UserID,omitempty"`
  1144. }
  1145. func (x *UpdateWhereRequest) Reset() {
  1146. *x = UpdateWhereRequest{}
  1147. if protoimpl.UnsafeEnabled {
  1148. mi := &file_v1_request_command_proto_msgTypes[17]
  1149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. }
  1153. func (x *UpdateWhereRequest) String() string {
  1154. return protoimpl.X.MessageStringOf(x)
  1155. }
  1156. func (*UpdateWhereRequest) ProtoMessage() {}
  1157. func (x *UpdateWhereRequest) ProtoReflect() protoreflect.Message {
  1158. mi := &file_v1_request_command_proto_msgTypes[17]
  1159. if protoimpl.UnsafeEnabled && x != nil {
  1160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1161. if ms.LoadMessageInfo() == nil {
  1162. ms.StoreMessageInfo(mi)
  1163. }
  1164. return ms
  1165. }
  1166. return mi.MessageOf(x)
  1167. }
  1168. // Deprecated: Use UpdateWhereRequest.ProtoReflect.Descriptor instead.
  1169. func (*UpdateWhereRequest) Descriptor() ([]byte, []int) {
  1170. return file_v1_request_command_proto_rawDescGZIP(), []int{17}
  1171. }
  1172. func (x *UpdateWhereRequest) GetDatabaseID() string {
  1173. if x != nil {
  1174. return x.DatabaseID
  1175. }
  1176. return ""
  1177. }
  1178. func (x *UpdateWhereRequest) GetTablePrefixWithSchema() string {
  1179. if x != nil {
  1180. return x.TablePrefixWithSchema
  1181. }
  1182. return ""
  1183. }
  1184. func (x *UpdateWhereRequest) GetVersion() string {
  1185. if x != nil {
  1186. return x.Version
  1187. }
  1188. return ""
  1189. }
  1190. func (x *UpdateWhereRequest) GetKeyColumns() []string {
  1191. if x != nil {
  1192. return x.KeyColumns
  1193. }
  1194. return nil
  1195. }
  1196. func (x *UpdateWhereRequest) GetWhere() []byte {
  1197. if x != nil {
  1198. return x.Where
  1199. }
  1200. return nil
  1201. }
  1202. func (x *UpdateWhereRequest) GetNewTableRow() *TableRow {
  1203. if x != nil {
  1204. return x.NewTableRow
  1205. }
  1206. return nil
  1207. }
  1208. func (x *UpdateWhereRequest) GetUserID() string {
  1209. if x != nil {
  1210. return x.UserID
  1211. }
  1212. return ""
  1213. }
  1214. type ReplayRequest struct {
  1215. state protoimpl.MessageState
  1216. sizeCache protoimpl.SizeCache
  1217. unknownFields protoimpl.UnknownFields
  1218. DatabaseID string `protobuf:"bytes,1,opt,name=DatabaseID,proto3" json:"DatabaseID,omitempty"`
  1219. TablePrefixWithSchema string `protobuf:"bytes,2,opt,name=TablePrefixWithSchema,proto3" json:"TablePrefixWithSchema,omitempty"`
  1220. Version string `protobuf:"bytes,3,opt,name=Version,proto3" json:"Version,omitempty"`
  1221. KeyColumns []string `protobuf:"bytes,4,rep,name=KeyColumns,proto3" json:"KeyColumns,omitempty"`
  1222. KeyValues []string `protobuf:"bytes,5,rep,name=KeyValues,proto3" json:"KeyValues,omitempty"`
  1223. UserID string `protobuf:"bytes,6,opt,name=UserID,proto3" json:"UserID,omitempty"`
  1224. }
  1225. func (x *ReplayRequest) Reset() {
  1226. *x = ReplayRequest{}
  1227. if protoimpl.UnsafeEnabled {
  1228. mi := &file_v1_request_command_proto_msgTypes[18]
  1229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1230. ms.StoreMessageInfo(mi)
  1231. }
  1232. }
  1233. func (x *ReplayRequest) String() string {
  1234. return protoimpl.X.MessageStringOf(x)
  1235. }
  1236. func (*ReplayRequest) ProtoMessage() {}
  1237. func (x *ReplayRequest) ProtoReflect() protoreflect.Message {
  1238. mi := &file_v1_request_command_proto_msgTypes[18]
  1239. if protoimpl.UnsafeEnabled && x != nil {
  1240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1241. if ms.LoadMessageInfo() == nil {
  1242. ms.StoreMessageInfo(mi)
  1243. }
  1244. return ms
  1245. }
  1246. return mi.MessageOf(x)
  1247. }
  1248. // Deprecated: Use ReplayRequest.ProtoReflect.Descriptor instead.
  1249. func (*ReplayRequest) Descriptor() ([]byte, []int) {
  1250. return file_v1_request_command_proto_rawDescGZIP(), []int{18}
  1251. }
  1252. func (x *ReplayRequest) GetDatabaseID() string {
  1253. if x != nil {
  1254. return x.DatabaseID
  1255. }
  1256. return ""
  1257. }
  1258. func (x *ReplayRequest) GetTablePrefixWithSchema() string {
  1259. if x != nil {
  1260. return x.TablePrefixWithSchema
  1261. }
  1262. return ""
  1263. }
  1264. func (x *ReplayRequest) GetVersion() string {
  1265. if x != nil {
  1266. return x.Version
  1267. }
  1268. return ""
  1269. }
  1270. func (x *ReplayRequest) GetKeyColumns() []string {
  1271. if x != nil {
  1272. return x.KeyColumns
  1273. }
  1274. return nil
  1275. }
  1276. func (x *ReplayRequest) GetKeyValues() []string {
  1277. if x != nil {
  1278. return x.KeyValues
  1279. }
  1280. return nil
  1281. }
  1282. func (x *ReplayRequest) GetUserID() string {
  1283. if x != nil {
  1284. return x.UserID
  1285. }
  1286. return ""
  1287. }
  1288. type TableRow struct {
  1289. state protoimpl.MessageState
  1290. sizeCache protoimpl.SizeCache
  1291. unknownFields protoimpl.UnknownFields
  1292. Columns []*Column `protobuf:"bytes,1,rep,name=Columns,proto3" json:"Columns,omitempty"`
  1293. }
  1294. func (x *TableRow) Reset() {
  1295. *x = TableRow{}
  1296. if protoimpl.UnsafeEnabled {
  1297. mi := &file_v1_request_command_proto_msgTypes[19]
  1298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1299. ms.StoreMessageInfo(mi)
  1300. }
  1301. }
  1302. func (x *TableRow) String() string {
  1303. return protoimpl.X.MessageStringOf(x)
  1304. }
  1305. func (*TableRow) ProtoMessage() {}
  1306. func (x *TableRow) ProtoReflect() protoreflect.Message {
  1307. mi := &file_v1_request_command_proto_msgTypes[19]
  1308. if protoimpl.UnsafeEnabled && x != nil {
  1309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1310. if ms.LoadMessageInfo() == nil {
  1311. ms.StoreMessageInfo(mi)
  1312. }
  1313. return ms
  1314. }
  1315. return mi.MessageOf(x)
  1316. }
  1317. // Deprecated: Use TableRow.ProtoReflect.Descriptor instead.
  1318. func (*TableRow) Descriptor() ([]byte, []int) {
  1319. return file_v1_request_command_proto_rawDescGZIP(), []int{19}
  1320. }
  1321. func (x *TableRow) GetColumns() []*Column {
  1322. if x != nil {
  1323. return x.Columns
  1324. }
  1325. return nil
  1326. }
  1327. type Column struct {
  1328. state protoimpl.MessageState
  1329. sizeCache protoimpl.SizeCache
  1330. unknownFields protoimpl.UnknownFields
  1331. Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
  1332. Value *ColumnValue `protobuf:"bytes,2,opt,name=Value,proto3" json:"Value,omitempty"`
  1333. }
  1334. func (x *Column) Reset() {
  1335. *x = Column{}
  1336. if protoimpl.UnsafeEnabled {
  1337. mi := &file_v1_request_command_proto_msgTypes[20]
  1338. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1339. ms.StoreMessageInfo(mi)
  1340. }
  1341. }
  1342. func (x *Column) String() string {
  1343. return protoimpl.X.MessageStringOf(x)
  1344. }
  1345. func (*Column) ProtoMessage() {}
  1346. func (x *Column) ProtoReflect() protoreflect.Message {
  1347. mi := &file_v1_request_command_proto_msgTypes[20]
  1348. if protoimpl.UnsafeEnabled && x != nil {
  1349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1350. if ms.LoadMessageInfo() == nil {
  1351. ms.StoreMessageInfo(mi)
  1352. }
  1353. return ms
  1354. }
  1355. return mi.MessageOf(x)
  1356. }
  1357. // Deprecated: Use Column.ProtoReflect.Descriptor instead.
  1358. func (*Column) Descriptor() ([]byte, []int) {
  1359. return file_v1_request_command_proto_rawDescGZIP(), []int{20}
  1360. }
  1361. func (x *Column) GetName() string {
  1362. if x != nil {
  1363. return x.Name
  1364. }
  1365. return ""
  1366. }
  1367. func (x *Column) GetValue() *ColumnValue {
  1368. if x != nil {
  1369. return x.Value
  1370. }
  1371. return nil
  1372. }
  1373. type ColumnValue struct {
  1374. state protoimpl.MessageState
  1375. sizeCache protoimpl.SizeCache
  1376. unknownFields protoimpl.UnknownFields
  1377. Type string `protobuf:"bytes,1,opt,name=Type,proto3" json:"Type,omitempty"`
  1378. // Types that are assignable to TypedValue:
  1379. //
  1380. // *ColumnValue_StringValue
  1381. // *ColumnValue_Uint64Value
  1382. // *ColumnValue_Float64Value
  1383. // *ColumnValue_BoolValue
  1384. TypedValue isColumnValue_TypedValue `protobuf_oneof:"TypedValue"`
  1385. }
  1386. func (x *ColumnValue) Reset() {
  1387. *x = ColumnValue{}
  1388. if protoimpl.UnsafeEnabled {
  1389. mi := &file_v1_request_command_proto_msgTypes[21]
  1390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1391. ms.StoreMessageInfo(mi)
  1392. }
  1393. }
  1394. func (x *ColumnValue) String() string {
  1395. return protoimpl.X.MessageStringOf(x)
  1396. }
  1397. func (*ColumnValue) ProtoMessage() {}
  1398. func (x *ColumnValue) ProtoReflect() protoreflect.Message {
  1399. mi := &file_v1_request_command_proto_msgTypes[21]
  1400. if protoimpl.UnsafeEnabled && x != nil {
  1401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1402. if ms.LoadMessageInfo() == nil {
  1403. ms.StoreMessageInfo(mi)
  1404. }
  1405. return ms
  1406. }
  1407. return mi.MessageOf(x)
  1408. }
  1409. // Deprecated: Use ColumnValue.ProtoReflect.Descriptor instead.
  1410. func (*ColumnValue) Descriptor() ([]byte, []int) {
  1411. return file_v1_request_command_proto_rawDescGZIP(), []int{21}
  1412. }
  1413. func (x *ColumnValue) GetType() string {
  1414. if x != nil {
  1415. return x.Type
  1416. }
  1417. return ""
  1418. }
  1419. func (m *ColumnValue) GetTypedValue() isColumnValue_TypedValue {
  1420. if m != nil {
  1421. return m.TypedValue
  1422. }
  1423. return nil
  1424. }
  1425. func (x *ColumnValue) GetStringValue() string {
  1426. if x, ok := x.GetTypedValue().(*ColumnValue_StringValue); ok {
  1427. return x.StringValue
  1428. }
  1429. return ""
  1430. }
  1431. func (x *ColumnValue) GetUint64Value() uint64 {
  1432. if x, ok := x.GetTypedValue().(*ColumnValue_Uint64Value); ok {
  1433. return x.Uint64Value
  1434. }
  1435. return 0
  1436. }
  1437. func (x *ColumnValue) GetFloat64Value() float64 {
  1438. if x, ok := x.GetTypedValue().(*ColumnValue_Float64Value); ok {
  1439. return x.Float64Value
  1440. }
  1441. return 0
  1442. }
  1443. func (x *ColumnValue) GetBoolValue() bool {
  1444. if x, ok := x.GetTypedValue().(*ColumnValue_BoolValue); ok {
  1445. return x.BoolValue
  1446. }
  1447. return false
  1448. }
  1449. type isColumnValue_TypedValue interface {
  1450. isColumnValue_TypedValue()
  1451. }
  1452. type ColumnValue_StringValue struct {
  1453. StringValue string `protobuf:"bytes,2,opt,name=StringValue,proto3,oneof"`
  1454. }
  1455. type ColumnValue_Uint64Value struct {
  1456. Uint64Value uint64 `protobuf:"varint,3,opt,name=Uint64Value,proto3,oneof"`
  1457. }
  1458. type ColumnValue_Float64Value struct {
  1459. Float64Value float64 `protobuf:"fixed64,4,opt,name=Float64Value,proto3,oneof"`
  1460. }
  1461. type ColumnValue_BoolValue struct {
  1462. BoolValue bool `protobuf:"varint,5,opt,name=BoolValue,proto3,oneof"`
  1463. }
  1464. func (*ColumnValue_StringValue) isColumnValue_TypedValue() {}
  1465. func (*ColumnValue_Uint64Value) isColumnValue_TypedValue() {}
  1466. func (*ColumnValue_Float64Value) isColumnValue_TypedValue() {}
  1467. func (*ColumnValue_BoolValue) isColumnValue_TypedValue() {}
  1468. var File_v1_request_command_proto protoreflect.FileDescriptor
  1469. var file_v1_request_command_proto_rawDesc = []byte{
  1470. 0x0a, 0x18, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2f, 0x63, 0x6f, 0x6d,
  1471. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x72, 0x65, 0x71, 0x75,
  1472. 0x65, 0x73, 0x74, 0x1a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  1473. 0x6d, 0x77, 0x69, 0x74, 0x6b, 0x6f, 0x77, 0x2f, 0x67, 0x6f, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1474. 0x2d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x69,
  1475. 0x64, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x74, 0x0a, 0x12, 0x41,
  1476. 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1477. 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18,
  1478. 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44,
  1479. 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x36, 0x0a, 0x05, 0x49, 0x74, 0x65,
  1480. 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65,
  1481. 0x73, 0x74, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x49, 0x74,
  1482. 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d,
  1483. 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x0f, 0x41, 0x75, 0x74, 0x6f, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74,
  1484. 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1485. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01,
  1486. 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61,
  1487. 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68,
  1488. 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02,
  1489. 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65,
  1490. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x36, 0x0a, 0x12, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x6f,
  1491. 0x64, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1492. 0x0c, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x12, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1493. 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x22, 0x41, 0x0a,
  1494. 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69,
  1495. 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1496. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  1497. 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1498. 0x22, 0xe8, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52, 0x65, 0x71,
  1499. 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1500. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20,
  1501. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62,
  1502. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1503. 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  1504. 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72,
  1505. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1506. 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00,
  1507. 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x08,
  1508. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
  1509. 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f,
  1510. 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1511. 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x05, 0x20,
  1512. 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x69, 0x0a, 0x14, 0x49,
  1513. 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1514. 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03,
  1515. 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73,
  1516. 0x65, 0x72, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74, 0x65, 0x6d, 0x42,
  1517. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x16,
  1518. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1519. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xd7, 0x01, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74,
  1520. 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61,
  1521. 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68,
  1522. 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  1523. 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69,
  1524. 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73,
  1525. 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58,
  1526. 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65,
  1527. 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06,
  1528. 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1529. 0x6e, 0x73, 0x12, 0x24, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18,
  1530. 0x04, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x09, 0x4b,
  1531. 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72,
  1532. 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
  1533. 0x22, 0xcc, 0x01, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x68, 0x65, 0x72, 0x65,
  1534. 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62,
  1535. 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65,
  1536. 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1537. 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74,
  1538. 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69,
  1539. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01,
  1540. 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79,
  1541. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2,
  1542. 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  1543. 0x73, 0x12, 0x14, 0x0a, 0x05, 0x57, 0x68, 0x65, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c,
  1544. 0x52, 0x05, 0x57, 0x68, 0x65, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  1545. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22,
  1546. 0x94, 0x02, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1547. 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66,
  1548. 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01,
  1549. 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c,
  1550. 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d,
  1551. 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  1552. 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73,
  1553. 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,
  1554. 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52,
  1555. 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x24, 0x0a, 0x09, 0x4b,
  1556. 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06,
  1557. 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1558. 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77,
  1559. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1560. 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70,
  1561. 0x00, 0x52, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16,
  1562. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1563. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x89, 0x02, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74,
  1564. 0x65, 0x57, 0x68, 0x65, 0x72, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1565. 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69,
  1566. 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1567. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1568. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a,
  1569. 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1570. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  1571. 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x03, 0x20,
  1572. 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79,
  1573. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x57, 0x68, 0x65, 0x72, 0x65,
  1574. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x57, 0x68, 0x65, 0x72, 0x65, 0x12, 0x3b, 0x0a,
  1575. 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01,
  1576. 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62,
  1577. 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0b, 0x4e,
  1578. 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73,
  1579. 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72,
  1580. 0x49, 0x44, 0x22, 0x17, 0x0a, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  1581. 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0xa8, 0x05, 0x0a, 0x14,
  1582. 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61,
  1583. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5c, 0x0a, 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
  1584. 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18,
  1585. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1586. 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e,
  1587. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x17, 0x54, 0x72, 0x61, 0x6e, 0x73,
  1588. 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  1589. 0x73, 0x74, 0x12, 0x44, 0x0a, 0x0f, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52, 0x65,
  1590. 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65,
  1591. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x78, 0x52, 0x65,
  1592. 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54,
  1593. 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x14, 0x49, 0x6e, 0x73, 0x65,
  1594. 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1595. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1596. 0x2e, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65,
  1597. 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x14, 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x42,
  1598. 0x61, 0x74, 0x63, 0x68, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x44, 0x0a,
  1599. 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1600. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1601. 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1602. 0x48, 0x00, 0x52, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1603. 0x65, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x68, 0x65,
  1604. 0x72, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28,
  1605. 0x0b, 0x32, 0x1d, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x44, 0x65, 0x6c, 0x65,
  1606. 0x74, 0x65, 0x57, 0x68, 0x65, 0x72, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1607. 0x48, 0x00, 0x52, 0x14, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x68, 0x65, 0x72, 0x65, 0x54,
  1608. 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x44, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61,
  1609. 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  1610. 0x0b, 0x32, 0x18, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61,
  1611. 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x55,
  1612. 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x53,
  1613. 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x68, 0x65, 0x72, 0x65, 0x54, 0x78, 0x52,
  1614. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x72,
  1615. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x68, 0x65,
  1616. 0x72, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x14, 0x55,
  1617. 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x68, 0x65, 0x72, 0x65, 0x54, 0x78, 0x52, 0x65, 0x71, 0x75,
  1618. 0x65, 0x73, 0x74, 0x12, 0x56, 0x0a, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69,
  1619. 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01,
  1620. 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x72, 0x61,
  1621. 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1622. 0x73, 0x74, 0x48, 0x00, 0x52, 0x15, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f,
  1623. 0x6e, 0x45, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x42, 0x09, 0x0a, 0x07, 0x52,
  1624. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x8e, 0x02, 0x0a, 0x0d, 0x49, 0x6e, 0x73, 0x65, 0x72,
  1625. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1626. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  1627. 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1628. 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57,
  1629. 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
  1630. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1631. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20,
  1632. 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
  1633. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1634. 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04,
  1635. 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65,
  1636. 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x08, 0x54, 0x61, 0x62, 0x6c,
  1637. 0x65, 0x52, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71,
  1638. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2,
  1639. 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12,
  1640. 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  1641. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x8f, 0x01, 0x0a, 0x12, 0x49, 0x6e, 0x73, 0x65,
  1642. 0x72, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26,
  1643. 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
  1644. 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1645. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x39, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18,
  1646. 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1647. 0x49, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74,
  1648. 0x65, 0x6d, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x60, 0x01, 0x52, 0x05, 0x49, 0x74, 0x65, 0x6d,
  1649. 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28,
  1650. 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xd5, 0x01, 0x0a, 0x12, 0x49, 0x6e,
  1651. 0x73, 0x65, 0x72, 0x74, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x49, 0x74, 0x65, 0x6d,
  1652. 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57,
  1653. 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
  1654. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1655. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20,
  1656. 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
  1657. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1658. 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x03,
  1659. 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65,
  1660. 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x37, 0x0a, 0x09, 0x54, 0x61, 0x62, 0x6c,
  1661. 0x65, 0x52, 0x6f, 0x77, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65,
  1662. 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06,
  1663. 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x09, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77,
  1664. 0x73, 0x22, 0xfd, 0x01, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
  1665. 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49,
  1666. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52,
  1667. 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54,
  1668. 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63,
  1669. 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02,
  1670. 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57,
  1671. 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72,
  1672. 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02,
  1673. 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b,
  1674. 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x42,
  1675. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75,
  1676. 0x6d, 0x6e, 0x73, 0x12, 0x24, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73,
  1677. 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x09,
  1678. 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65,
  1679. 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49,
  1680. 0x44, 0x22, 0xf2, 0x01, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x68, 0x65, 0x72,
  1681. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1682. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  1683. 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1684. 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57,
  1685. 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
  1686. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1687. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20,
  1688. 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
  1689. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1690. 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04,
  1691. 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65,
  1692. 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x57, 0x68, 0x65, 0x72,
  1693. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x57, 0x68, 0x65, 0x72, 0x65, 0x12, 0x16,
  1694. 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1695. 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xba, 0x02, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74,
  1696. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61,
  1697. 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf,
  1698. 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44,
  1699. 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57,
  1700. 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
  1701. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72,
  1702. 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20,
  1703. 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42,
  1704. 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1705. 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04,
  1706. 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65,
  1707. 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x24, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56,
  1708. 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f,
  1709. 0x02, 0x70, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x3b,
  1710. 0x0a, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18, 0x06, 0x20,
  1711. 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x61,
  1712. 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0b,
  1713. 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a, 0x06, 0x55,
  1714. 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55, 0x73, 0x65,
  1715. 0x72, 0x49, 0x44, 0x22, 0xaf, 0x02, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x68,
  1716. 0x65, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61,
  1717. 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1718. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,
  1719. 0x49, 0x44, 0x12, 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69,
  1720. 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28,
  1721. 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65,
  1722. 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
  1723. 0x12, 0x20, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
  1724. 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69,
  1725. 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73,
  1726. 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a,
  1727. 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x57, 0x68,
  1728. 0x65, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x57, 0x68, 0x65, 0x72, 0x65,
  1729. 0x12, 0x3b, 0x0a, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x18,
  1730. 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
  1731. 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00,
  1732. 0x52, 0x0b, 0x4e, 0x65, 0x77, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f, 0x77, 0x12, 0x16, 0x0a,
  1733. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55,
  1734. 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0xfd, 0x01, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x79,
  1735. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62,
  1736. 0x61, 0x73, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f,
  1737. 0x02, 0x58, 0x01, 0x52, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x49, 0x44, 0x12,
  1738. 0x3c, 0x0a, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78, 0x57, 0x69,
  1739. 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1740. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x15, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65,
  1741. 0x66, 0x69, 0x78, 0x57, 0x69, 0x74, 0x68, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x20, 0x0a,
  1742. 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x06,
  1743. 0xe2, 0xdf, 0x1f, 0x02, 0x58, 0x01, 0x52, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  1744. 0x26, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20,
  1745. 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02, 0x70, 0x00, 0x52, 0x0a, 0x4b, 0x65, 0x79,
  1746. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x24, 0x0a, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61,
  1747. 0x6c, 0x75, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x42, 0x06, 0xe2, 0xdf, 0x1f, 0x02,
  1748. 0x70, 0x00, 0x52, 0x09, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x16, 0x0a,
  1749. 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x55,
  1750. 0x73, 0x65, 0x72, 0x49, 0x44, 0x22, 0x35, 0x0a, 0x08, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x6f,
  1751. 0x77, 0x12, 0x29, 0x0a, 0x07, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03,
  1752. 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6c,
  1753. 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x22, 0x48, 0x0a, 0x06,
  1754. 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  1755. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x05, 0x56, 0x61,
  1756. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x71, 0x75,
  1757. 0x65, 0x73, 0x74, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
  1758. 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xbd, 0x01, 0x0a, 0x0b, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
  1759. 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01,
  1760. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x53, 0x74,
  1761. 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48,
  1762. 0x00, 0x52, 0x0b, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x22,
  1763. 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20,
  1764. 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
  1765. 0x75, 0x65, 0x12, 0x24, 0x0a, 0x0c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
  1766. 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0c, 0x46, 0x6c, 0x6f, 0x61,
  1767. 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1e, 0x0a, 0x09, 0x42, 0x6f, 0x6f, 0x6c,
  1768. 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x42,
  1769. 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x54, 0x79, 0x70, 0x65,
  1770. 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x20, 0x5a, 0x1e, 0x64, 0x70, 0x73, 0x2f, 0x61, 0x70,
  1771. 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x31,
  1772. 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1773. }
  1774. var (
  1775. file_v1_request_command_proto_rawDescOnce sync.Once
  1776. file_v1_request_command_proto_rawDescData = file_v1_request_command_proto_rawDesc
  1777. )
  1778. func file_v1_request_command_proto_rawDescGZIP() []byte {
  1779. file_v1_request_command_proto_rawDescOnce.Do(func() {
  1780. file_v1_request_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_request_command_proto_rawDescData)
  1781. })
  1782. return file_v1_request_command_proto_rawDescData
  1783. }
  1784. var file_v1_request_command_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
  1785. var file_v1_request_command_proto_goTypes = []interface{}{
  1786. (*AutoMigrateRequest)(nil), // 0: request.AutoMigrateRequest
  1787. (*AutoMigrateItem)(nil), // 1: request.AutoMigrateItem
  1788. (*TransactionBeginRequest)(nil), // 2: request.TransactionBeginRequest
  1789. (*InsertTxRequest)(nil), // 3: request.InsertTxRequest
  1790. (*InsertBatchTxRequest)(nil), // 4: request.InsertBatchTxRequest
  1791. (*DeleteTxRequest)(nil), // 5: request.DeleteTxRequest
  1792. (*DeleteWhereTxRequest)(nil), // 6: request.DeleteWhereTxRequest
  1793. (*UpdateTxRequest)(nil), // 7: request.UpdateTxRequest
  1794. (*UpdateWhereTxRequest)(nil), // 8: request.UpdateWhereTxRequest
  1795. (*TransactionEndRequest)(nil), // 9: request.TransactionEndRequest
  1796. (*TransactionOperation)(nil), // 10: request.TransactionOperation
  1797. (*InsertRequest)(nil), // 11: request.InsertRequest
  1798. (*InsertBatchRequest)(nil), // 12: request.InsertBatchRequest
  1799. (*InsertTableRowItem)(nil), // 13: request.InsertTableRowItem
  1800. (*DeleteRequest)(nil), // 14: request.DeleteRequest
  1801. (*DeleteWhereRequest)(nil), // 15: request.DeleteWhereRequest
  1802. (*UpdateRequest)(nil), // 16: request.UpdateRequest
  1803. (*UpdateWhereRequest)(nil), // 17: request.UpdateWhereRequest
  1804. (*ReplayRequest)(nil), // 18: request.ReplayRequest
  1805. (*TableRow)(nil), // 19: request.TableRow
  1806. (*Column)(nil), // 20: request.Column
  1807. (*ColumnValue)(nil), // 21: request.ColumnValue
  1808. }
  1809. var file_v1_request_command_proto_depIdxs = []int32{
  1810. 1, // 0: request.AutoMigrateRequest.Items:type_name -> request.AutoMigrateItem
  1811. 19, // 1: request.InsertTxRequest.TableRow:type_name -> request.TableRow
  1812. 13, // 2: request.InsertBatchTxRequest.Items:type_name -> request.InsertTableRowItem
  1813. 19, // 3: request.UpdateTxRequest.NewTableRow:type_name -> request.TableRow
  1814. 19, // 4: request.UpdateWhereTxRequest.NewTableRow:type_name -> request.TableRow
  1815. 2, // 5: request.TransactionOperation.TransactionBeginRequest:type_name -> request.TransactionBeginRequest
  1816. 3, // 6: request.TransactionOperation.InsertTxRequest:type_name -> request.InsertTxRequest
  1817. 4, // 7: request.TransactionOperation.InsertBatchTxRequest:type_name -> request.InsertBatchTxRequest
  1818. 5, // 8: request.TransactionOperation.DeleteTxRequest:type_name -> request.DeleteTxRequest
  1819. 6, // 9: request.TransactionOperation.DeleteWhereTxRequest:type_name -> request.DeleteWhereTxRequest
  1820. 7, // 10: request.TransactionOperation.UpdateTxRequest:type_name -> request.UpdateTxRequest
  1821. 8, // 11: request.TransactionOperation.UpdateWhereTxRequest:type_name -> request.UpdateWhereTxRequest
  1822. 9, // 12: request.TransactionOperation.TransactionEndRequest:type_name -> request.TransactionEndRequest
  1823. 19, // 13: request.InsertRequest.TableRow:type_name -> request.TableRow
  1824. 13, // 14: request.InsertBatchRequest.Items:type_name -> request.InsertTableRowItem
  1825. 19, // 15: request.InsertTableRowItem.TableRows:type_name -> request.TableRow
  1826. 19, // 16: request.UpdateRequest.NewTableRow:type_name -> request.TableRow
  1827. 19, // 17: request.UpdateWhereRequest.NewTableRow:type_name -> request.TableRow
  1828. 20, // 18: request.TableRow.Columns:type_name -> request.Column
  1829. 21, // 19: request.Column.Value:type_name -> request.ColumnValue
  1830. 20, // [20:20] is the sub-list for method output_type
  1831. 20, // [20:20] is the sub-list for method input_type
  1832. 20, // [20:20] is the sub-list for extension type_name
  1833. 20, // [20:20] is the sub-list for extension extendee
  1834. 0, // [0:20] is the sub-list for field type_name
  1835. }
  1836. func init() { file_v1_request_command_proto_init() }
  1837. func file_v1_request_command_proto_init() {
  1838. if File_v1_request_command_proto != nil {
  1839. return
  1840. }
  1841. if !protoimpl.UnsafeEnabled {
  1842. file_v1_request_command_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1843. switch v := v.(*AutoMigrateRequest); i {
  1844. case 0:
  1845. return &v.state
  1846. case 1:
  1847. return &v.sizeCache
  1848. case 2:
  1849. return &v.unknownFields
  1850. default:
  1851. return nil
  1852. }
  1853. }
  1854. file_v1_request_command_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1855. switch v := v.(*AutoMigrateItem); i {
  1856. case 0:
  1857. return &v.state
  1858. case 1:
  1859. return &v.sizeCache
  1860. case 2:
  1861. return &v.unknownFields
  1862. default:
  1863. return nil
  1864. }
  1865. }
  1866. file_v1_request_command_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1867. switch v := v.(*TransactionBeginRequest); i {
  1868. case 0:
  1869. return &v.state
  1870. case 1:
  1871. return &v.sizeCache
  1872. case 2:
  1873. return &v.unknownFields
  1874. default:
  1875. return nil
  1876. }
  1877. }
  1878. file_v1_request_command_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1879. switch v := v.(*InsertTxRequest); i {
  1880. case 0:
  1881. return &v.state
  1882. case 1:
  1883. return &v.sizeCache
  1884. case 2:
  1885. return &v.unknownFields
  1886. default:
  1887. return nil
  1888. }
  1889. }
  1890. file_v1_request_command_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1891. switch v := v.(*InsertBatchTxRequest); i {
  1892. case 0:
  1893. return &v.state
  1894. case 1:
  1895. return &v.sizeCache
  1896. case 2:
  1897. return &v.unknownFields
  1898. default:
  1899. return nil
  1900. }
  1901. }
  1902. file_v1_request_command_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1903. switch v := v.(*DeleteTxRequest); i {
  1904. case 0:
  1905. return &v.state
  1906. case 1:
  1907. return &v.sizeCache
  1908. case 2:
  1909. return &v.unknownFields
  1910. default:
  1911. return nil
  1912. }
  1913. }
  1914. file_v1_request_command_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1915. switch v := v.(*DeleteWhereTxRequest); i {
  1916. case 0:
  1917. return &v.state
  1918. case 1:
  1919. return &v.sizeCache
  1920. case 2:
  1921. return &v.unknownFields
  1922. default:
  1923. return nil
  1924. }
  1925. }
  1926. file_v1_request_command_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1927. switch v := v.(*UpdateTxRequest); i {
  1928. case 0:
  1929. return &v.state
  1930. case 1:
  1931. return &v.sizeCache
  1932. case 2:
  1933. return &v.unknownFields
  1934. default:
  1935. return nil
  1936. }
  1937. }
  1938. file_v1_request_command_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1939. switch v := v.(*UpdateWhereTxRequest); i {
  1940. case 0:
  1941. return &v.state
  1942. case 1:
  1943. return &v.sizeCache
  1944. case 2:
  1945. return &v.unknownFields
  1946. default:
  1947. return nil
  1948. }
  1949. }
  1950. file_v1_request_command_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1951. switch v := v.(*TransactionEndRequest); i {
  1952. case 0:
  1953. return &v.state
  1954. case 1:
  1955. return &v.sizeCache
  1956. case 2:
  1957. return &v.unknownFields
  1958. default:
  1959. return nil
  1960. }
  1961. }
  1962. file_v1_request_command_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1963. switch v := v.(*TransactionOperation); i {
  1964. case 0:
  1965. return &v.state
  1966. case 1:
  1967. return &v.sizeCache
  1968. case 2:
  1969. return &v.unknownFields
  1970. default:
  1971. return nil
  1972. }
  1973. }
  1974. file_v1_request_command_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1975. switch v := v.(*InsertRequest); i {
  1976. case 0:
  1977. return &v.state
  1978. case 1:
  1979. return &v.sizeCache
  1980. case 2:
  1981. return &v.unknownFields
  1982. default:
  1983. return nil
  1984. }
  1985. }
  1986. file_v1_request_command_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1987. switch v := v.(*InsertBatchRequest); i {
  1988. case 0:
  1989. return &v.state
  1990. case 1:
  1991. return &v.sizeCache
  1992. case 2:
  1993. return &v.unknownFields
  1994. default:
  1995. return nil
  1996. }
  1997. }
  1998. file_v1_request_command_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1999. switch v := v.(*InsertTableRowItem); i {
  2000. case 0:
  2001. return &v.state
  2002. case 1:
  2003. return &v.sizeCache
  2004. case 2:
  2005. return &v.unknownFields
  2006. default:
  2007. return nil
  2008. }
  2009. }
  2010. file_v1_request_command_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2011. switch v := v.(*DeleteRequest); i {
  2012. case 0:
  2013. return &v.state
  2014. case 1:
  2015. return &v.sizeCache
  2016. case 2:
  2017. return &v.unknownFields
  2018. default:
  2019. return nil
  2020. }
  2021. }
  2022. file_v1_request_command_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2023. switch v := v.(*DeleteWhereRequest); i {
  2024. case 0:
  2025. return &v.state
  2026. case 1:
  2027. return &v.sizeCache
  2028. case 2:
  2029. return &v.unknownFields
  2030. default:
  2031. return nil
  2032. }
  2033. }
  2034. file_v1_request_command_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2035. switch v := v.(*UpdateRequest); i {
  2036. case 0:
  2037. return &v.state
  2038. case 1:
  2039. return &v.sizeCache
  2040. case 2:
  2041. return &v.unknownFields
  2042. default:
  2043. return nil
  2044. }
  2045. }
  2046. file_v1_request_command_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2047. switch v := v.(*UpdateWhereRequest); i {
  2048. case 0:
  2049. return &v.state
  2050. case 1:
  2051. return &v.sizeCache
  2052. case 2:
  2053. return &v.unknownFields
  2054. default:
  2055. return nil
  2056. }
  2057. }
  2058. file_v1_request_command_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2059. switch v := v.(*ReplayRequest); i {
  2060. case 0:
  2061. return &v.state
  2062. case 1:
  2063. return &v.sizeCache
  2064. case 2:
  2065. return &v.unknownFields
  2066. default:
  2067. return nil
  2068. }
  2069. }
  2070. file_v1_request_command_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2071. switch v := v.(*TableRow); i {
  2072. case 0:
  2073. return &v.state
  2074. case 1:
  2075. return &v.sizeCache
  2076. case 2:
  2077. return &v.unknownFields
  2078. default:
  2079. return nil
  2080. }
  2081. }
  2082. file_v1_request_command_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2083. switch v := v.(*Column); i {
  2084. case 0:
  2085. return &v.state
  2086. case 1:
  2087. return &v.sizeCache
  2088. case 2:
  2089. return &v.unknownFields
  2090. default:
  2091. return nil
  2092. }
  2093. }
  2094. file_v1_request_command_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2095. switch v := v.(*ColumnValue); i {
  2096. case 0:
  2097. return &v.state
  2098. case 1:
  2099. return &v.sizeCache
  2100. case 2:
  2101. return &v.unknownFields
  2102. default:
  2103. return nil
  2104. }
  2105. }
  2106. }
  2107. file_v1_request_command_proto_msgTypes[10].OneofWrappers = []interface{}{
  2108. (*TransactionOperation_TransactionBeginRequest)(nil),
  2109. (*TransactionOperation_InsertTxRequest)(nil),
  2110. (*TransactionOperation_InsertBatchTxRequest)(nil),
  2111. (*TransactionOperation_DeleteTxRequest)(nil),
  2112. (*TransactionOperation_DeleteWhereTxRequest)(nil),
  2113. (*TransactionOperation_UpdateTxRequest)(nil),
  2114. (*TransactionOperation_UpdateWhereTxRequest)(nil),
  2115. (*TransactionOperation_TransactionEndRequest)(nil),
  2116. }
  2117. file_v1_request_command_proto_msgTypes[21].OneofWrappers = []interface{}{
  2118. (*ColumnValue_StringValue)(nil),
  2119. (*ColumnValue_Uint64Value)(nil),
  2120. (*ColumnValue_Float64Value)(nil),
  2121. (*ColumnValue_BoolValue)(nil),
  2122. }
  2123. type x struct{}
  2124. out := protoimpl.TypeBuilder{
  2125. File: protoimpl.DescBuilder{
  2126. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2127. RawDescriptor: file_v1_request_command_proto_rawDesc,
  2128. NumEnums: 0,
  2129. NumMessages: 22,
  2130. NumExtensions: 0,
  2131. NumServices: 0,
  2132. },
  2133. GoTypes: file_v1_request_command_proto_goTypes,
  2134. DependencyIndexes: file_v1_request_command_proto_depIdxs,
  2135. MessageInfos: file_v1_request_command_proto_msgTypes,
  2136. }.Build()
  2137. File_v1_request_command_proto = out.File
  2138. file_v1_request_command_proto_rawDesc = nil
  2139. file_v1_request_command_proto_goTypes = nil
  2140. file_v1_request_command_proto_depIdxs = nil
  2141. }