GPUdb C++ API  Version 6.2.0.3
alter_table.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_TABLE_H__
7 #define __ALTER_TABLE_H__
8 
9 namespace gpudb
10 {
11 
58  {
59 
65  tableName(std::string()),
66  action(std::string()),
67  value(std::string()),
68  options(std::map<std::string, std::string>())
69  {
70  }
71 
274  AlterTableRequest(const std::string& tableName_, const std::string& action_, const std::string& value_, const std::map<std::string, std::string>& options_):
275  tableName( tableName_ ),
276  action( action_ ),
277  value( value_ ),
278  options( options_ )
279  {
280  }
281 
282  std::string tableName;
283  std::string action;
284  std::string value;
285  std::map<std::string, std::string> options;
286  };
287 }
288 
289 namespace avro
290 {
291  template<> struct codec_traits<gpudb::AlterTableRequest>
292  {
293  static void encode(Encoder& e, const gpudb::AlterTableRequest& v)
294  {
295  ::avro::encode(e, v.tableName);
296  ::avro::encode(e, v.action);
297  ::avro::encode(e, v.value);
298  ::avro::encode(e, v.options);
299  }
300 
301  static void decode(Decoder& d, gpudb::AlterTableRequest& v)
302  {
303  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
304  {
305  const std::vector<size_t> fo = rd->fieldOrder();
306 
307  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
308  {
309  switch (*it)
310  {
311  case 0:
312  ::avro::decode(d, v.tableName);
313  break;
314 
315  case 1:
316  ::avro::decode(d, v.action);
317  break;
318 
319  case 2:
320  ::avro::decode(d, v.value);
321  break;
322 
323  case 3:
324  ::avro::decode(d, v.options);
325  break;
326 
327  default:
328  break;
329  }
330  }
331  }
332  else
333  {
334  ::avro::decode(d, v.tableName);
335  ::avro::decode(d, v.action);
336  ::avro::decode(d, v.value);
337  ::avro::decode(d, v.options);
338  }
339  }
340  };
341 }
342 
343 namespace gpudb
344 {
345 
392  {
393 
399  tableName(std::string()),
400  action(std::string()),
401  value(std::string()),
402  typeId(std::string()),
403  typeDefinition(std::string()),
404  properties(std::map<std::string, std::vector<std::string> >()),
405  label(std::string())
406  {
407  }
408 
409  std::string tableName;
410  std::string action;
411  std::string value;
412  std::string typeId;
413  std::string typeDefinition;
414  std::map<std::string, std::vector<std::string> > properties;
415  std::string label;
416  };
417 }
418 
419 namespace avro
420 {
421  template<> struct codec_traits<gpudb::AlterTableResponse>
422  {
423  static void encode(Encoder& e, const gpudb::AlterTableResponse& v)
424  {
425  ::avro::encode(e, v.tableName);
426  ::avro::encode(e, v.action);
427  ::avro::encode(e, v.value);
428  ::avro::encode(e, v.typeId);
429  ::avro::encode(e, v.typeDefinition);
430  ::avro::encode(e, v.properties);
431  ::avro::encode(e, v.label);
432  }
433 
434  static void decode(Decoder& d, gpudb::AlterTableResponse& v)
435  {
436  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
437  {
438  const std::vector<size_t> fo = rd->fieldOrder();
439 
440  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
441  {
442  switch (*it)
443  {
444  case 0:
445  ::avro::decode(d, v.tableName);
446  break;
447 
448  case 1:
449  ::avro::decode(d, v.action);
450  break;
451 
452  case 2:
453  ::avro::decode(d, v.value);
454  break;
455 
456  case 3:
457  ::avro::decode(d, v.typeId);
458  break;
459 
460  case 4:
461  ::avro::decode(d, v.typeDefinition);
462  break;
463 
464  case 5:
465  ::avro::decode(d, v.properties);
466  break;
467 
468  case 6:
469  ::avro::decode(d, v.label);
470  break;
471 
472  default:
473  break;
474  }
475  }
476  }
477  else
478  {
479  ::avro::decode(d, v.tableName);
480  ::avro::decode(d, v.action);
481  ::avro::decode(d, v.value);
482  ::avro::decode(d, v.typeId);
483  ::avro::decode(d, v.typeDefinition);
484  ::avro::decode(d, v.properties);
485  ::avro::decode(d, v.label);
486  }
487  }
488  };
489 }
490 
491 #endif
A set of output parameters for alterTable(const AlterTableRequest&) const.
Definition: alter_table.h:391
AlterTableResponse()
Constructs an AlterTableResponse object with default parameter values.
Definition: alter_table.h:398
std::map< std::string, std::string > options
Definition: alter_table.h:285
std::map< std::string, std::vector< std::string > > properties
Definition: alter_table.h:414
A set of input parameters for alterTable(const AlterTableRequest&) const.
Definition: alter_table.h:57
AlterTableRequest()
Constructs an AlterTableRequest object with default parameter values.
Definition: alter_table.h:64
AlterTableRequest(const std::string &tableName_, const std::string &action_, const std::string &value_, const std::map< std::string, std::string > &options_)
Constructs an AlterTableRequest object with the specified parameters.
Definition: alter_table.h:274