GPUdb C++ API  Version 6.2.0.3
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  {
149  }
150 
151  int32_t count;
152  };
153 }
154 
155 namespace avro
156 {
157  template<> struct codec_traits<gpudb::UpdateRecordsBySeriesResponse>
158  {
159  static void encode(Encoder& e, const gpudb::UpdateRecordsBySeriesResponse& v)
160  {
161  ::avro::encode(e, v.count);
162  }
163 
164  static void decode(Decoder& d, gpudb::UpdateRecordsBySeriesResponse& v)
165  {
166  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
167  {
168  const std::vector<size_t> fo = rd->fieldOrder();
169 
170  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
171  {
172  switch (*it)
173  {
174  case 0:
175  ::avro::decode(d, v.count);
176  break;
177 
178  default:
179  break;
180  }
181  }
182  }
183  else
184  {
185  ::avro::decode(d, v.count);
186  }
187  }
188  };
189 }
190 
191 #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. ...
A set of input parameters for updateRecordsBySeries(const UpdateRecordsBySeriesRequest&) 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 updateRecordsBySeries(const UpdateRecordsBySeriesRequest&) const...