GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
update_records_by_series.h
Go to the documentation of this file.
1 /*
2  * This file was autogenerated by the GPUdb schema processor.
3  *
4  * DO NOT EDIT DIRECTLY.
5  */
6 #ifndef __UPDATE_RECORDS_BY_SERIES_H__
7 #define __UPDATE_RECORDS_BY_SERIES_H__
8 
9 namespace gpudb
10 {
11 
21  {
22 
28  tableName(std::string()),
29  worldTableName(std::string()),
30  viewName(std::string()),
31  reserved(std::vector<std::string>()),
32  options(std::map<std::string, std::string>())
33  {
34  }
35 
51  UpdateRecordsBySeriesRequest(const std::string& tableName_, const std::string& worldTableName_, const std::string& viewName_, const std::vector<std::string>& reserved_, const std::map<std::string, std::string>& options_):
52  tableName( tableName_ ),
53  worldTableName( worldTableName_ ),
54  viewName( viewName_ ),
55  reserved( reserved_ ),
56  options( options_ )
57  {
58  }
59 
60  std::string tableName;
61  std::string worldTableName;
62  std::string viewName;
63  std::vector<std::string> reserved;
64  std::map<std::string, std::string> options;
65  };
66 }
67 
68 namespace avro
69 {
70  template<> struct codec_traits<gpudb::UpdateRecordsBySeriesRequest>
71  {
72  static void encode(Encoder& e, const gpudb::UpdateRecordsBySeriesRequest& v)
73  {
74  ::avro::encode(e, v.tableName);
75  ::avro::encode(e, v.worldTableName);
76  ::avro::encode(e, v.viewName);
77  ::avro::encode(e, v.reserved);
78  ::avro::encode(e, v.options);
79  }
80 
81  static void decode(Decoder& d, gpudb::UpdateRecordsBySeriesRequest& v)
82  {
83  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
84  {
85  const std::vector<size_t> fo = rd->fieldOrder();
86 
87  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
88  {
89  switch (*it)
90  {
91  case 0:
92  ::avro::decode(d, v.tableName);
93  break;
94 
95  case 1:
96  ::avro::decode(d, v.worldTableName);
97  break;
98 
99  case 2:
100  ::avro::decode(d, v.viewName);
101  break;
102 
103  case 3:
104  ::avro::decode(d, v.reserved);
105  break;
106 
107  case 4:
108  ::avro::decode(d, v.options);
109  break;
110 
111  default:
112  break;
113  }
114  }
115  }
116  else
117  {
118  ::avro::decode(d, v.tableName);
119  ::avro::decode(d, v.worldTableName);
120  ::avro::decode(d, v.viewName);
121  ::avro::decode(d, v.reserved);
122  ::avro::decode(d, v.options);
123  }
124  }
125  };
126 }
127 
128 namespace gpudb
129 {
130 
140  {
141 
147  count(int32_t()),
148  info(std::map<std::string, std::string>())
149  {
150  }
151 
152  int32_t count;
153  std::map<std::string, std::string> info;
154  };
155 }
156 
157 namespace avro
158 {
159  template<> struct codec_traits<gpudb::UpdateRecordsBySeriesResponse>
160  {
161  static void encode(Encoder& e, const gpudb::UpdateRecordsBySeriesResponse& v)
162  {
163  ::avro::encode(e, v.count);
164  ::avro::encode(e, v.info);
165  }
166 
167  static void decode(Decoder& d, gpudb::UpdateRecordsBySeriesResponse& v)
168  {
169  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
170  {
171  const std::vector<size_t> fo = rd->fieldOrder();
172 
173  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
174  {
175  switch (*it)
176  {
177  case 0:
178  ::avro::decode(d, v.count);
179  break;
180 
181  case 1:
182  ::avro::decode(d, v.info);
183  break;
184 
185  default:
186  break;
187  }
188  }
189  }
190  else
191  {
192  ::avro::decode(d, v.count);
193  ::avro::decode(d, v.info);
194  }
195  }
196  };
197 }
198 
199 #endif
std::map< std::string, std::string > options
UpdateRecordsBySeriesRequest()
Constructs an UpdateRecordsBySeriesRequest object with default parameter values.
UpdateRecordsBySeriesResponse()
Constructs an UpdateRecordsBySeriesResponse object with default parameter values. ...
std::map< std::string, std::string > info
A set of input parameters for const.
UpdateRecordsBySeriesRequest(const std::string &tableName_, const std::string &worldTableName_, const std::string &viewName_, const std::vector< std::string > &reserved_, const std::map< std::string, std::string > &options_)
Constructs an UpdateRecordsBySeriesRequest object with the specified parameters.
A set of output parameters for const.