GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
alter_system_properties.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 __ALTER_SYSTEM_PROPERTIES_H__
7 #define __ALTER_SYSTEM_PROPERTIES_H__
8 
9 namespace gpudb
10 {
11 
25  {
26 
32  propertyUpdatesMap(std::map<std::string, std::string>()),
33  options(std::map<std::string, std::string>())
34  {
35  }
36 
224  AlterSystemPropertiesRequest(const std::map<std::string, std::string>& propertyUpdatesMap_, const std::map<std::string, std::string>& options_):
225  propertyUpdatesMap( propertyUpdatesMap_ ),
226  options( options_ )
227  {
228  }
229 
230  std::map<std::string, std::string> propertyUpdatesMap;
231  std::map<std::string, std::string> options;
232  };
233 }
234 
235 namespace avro
236 {
237  template<> struct codec_traits<gpudb::AlterSystemPropertiesRequest>
238  {
239  static void encode(Encoder& e, const gpudb::AlterSystemPropertiesRequest& v)
240  {
241  ::avro::encode(e, v.propertyUpdatesMap);
242  ::avro::encode(e, v.options);
243  }
244 
245  static void decode(Decoder& d, gpudb::AlterSystemPropertiesRequest& v)
246  {
247  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
248  {
249  const std::vector<size_t> fo = rd->fieldOrder();
250 
251  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
252  {
253  switch (*it)
254  {
255  case 0:
256  ::avro::decode(d, v.propertyUpdatesMap);
257  break;
258 
259  case 1:
260  ::avro::decode(d, v.options);
261  break;
262 
263  default:
264  break;
265  }
266  }
267  }
268  else
269  {
270  ::avro::decode(d, v.propertyUpdatesMap);
271  ::avro::decode(d, v.options);
272  }
273  }
274  };
275 }
276 
277 namespace gpudb
278 {
279 
293  {
294 
300  updatedPropertiesMap(std::map<std::string, std::string>()),
301  info(std::map<std::string, std::string>())
302  {
303  }
304 
305  std::map<std::string, std::string> updatedPropertiesMap;
306  std::map<std::string, std::string> info;
307  };
308 }
309 
310 namespace avro
311 {
312  template<> struct codec_traits<gpudb::AlterSystemPropertiesResponse>
313  {
314  static void encode(Encoder& e, const gpudb::AlterSystemPropertiesResponse& v)
315  {
316  ::avro::encode(e, v.updatedPropertiesMap);
317  ::avro::encode(e, v.info);
318  }
319 
320  static void decode(Decoder& d, gpudb::AlterSystemPropertiesResponse& v)
321  {
322  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
323  {
324  const std::vector<size_t> fo = rd->fieldOrder();
325 
326  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
327  {
328  switch (*it)
329  {
330  case 0:
331  ::avro::decode(d, v.updatedPropertiesMap);
332  break;
333 
334  case 1:
335  ::avro::decode(d, v.info);
336  break;
337 
338  default:
339  break;
340  }
341  }
342  }
343  else
344  {
345  ::avro::decode(d, v.updatedPropertiesMap);
346  ::avro::decode(d, v.info);
347  }
348  }
349  };
350 }
351 
352 #endif
std::map< std::string, std::string > info
A set of input parameters for const.
std::map< std::string, std::string > updatedPropertiesMap
std::map< std::string, std::string > propertyUpdatesMap
AlterSystemPropertiesResponse()
Constructs an AlterSystemPropertiesResponse object with default parameter values. ...
AlterSystemPropertiesRequest()
Constructs an AlterSystemPropertiesRequest object with default parameter values.
A set of output parameters for const.
AlterSystemPropertiesRequest(const std::map< std::string, std::string > &propertyUpdatesMap_, const std::map< std::string, std::string > &options_)
Constructs an AlterSystemPropertiesRequest object with the specified parameters.
std::map< std::string, std::string > options