GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
73  {
74 
80  tableName(std::string()),
81  action(std::string()),
82  value(std::string()),
83  options(std::map<std::string, std::string>())
84  {
85  }
86 
384  AlterTableRequest(const std::string& tableName_, const std::string& action_, const std::string& value_, const std::map<std::string, std::string>& options_):
385  tableName( tableName_ ),
386  action( action_ ),
387  value( value_ ),
388  options( options_ )
389  {
390  }
391 
392  std::string tableName;
393  std::string action;
394  std::string value;
395  std::map<std::string, std::string> options;
396  };
397 }
398 
399 namespace avro
400 {
401  template<> struct codec_traits<gpudb::AlterTableRequest>
402  {
403  static void encode(Encoder& e, const gpudb::AlterTableRequest& v)
404  {
405  ::avro::encode(e, v.tableName);
406  ::avro::encode(e, v.action);
407  ::avro::encode(e, v.value);
408  ::avro::encode(e, v.options);
409  }
410 
411  static void decode(Decoder& d, gpudb::AlterTableRequest& v)
412  {
413  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
414  {
415  const std::vector<size_t> fo = rd->fieldOrder();
416 
417  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
418  {
419  switch (*it)
420  {
421  case 0:
422  ::avro::decode(d, v.tableName);
423  break;
424 
425  case 1:
426  ::avro::decode(d, v.action);
427  break;
428 
429  case 2:
430  ::avro::decode(d, v.value);
431  break;
432 
433  case 3:
434  ::avro::decode(d, v.options);
435  break;
436 
437  default:
438  break;
439  }
440  }
441  }
442  else
443  {
444  ::avro::decode(d, v.tableName);
445  ::avro::decode(d, v.action);
446  ::avro::decode(d, v.value);
447  ::avro::decode(d, v.options);
448  }
449  }
450  };
451 }
452 
453 namespace gpudb
454 {
455 
517  {
518 
524  tableName(std::string()),
525  action(std::string()),
526  value(std::string()),
527  typeId(std::string()),
528  typeDefinition(std::string()),
529  properties(std::map<std::string, std::vector<std::string> >()),
530  label(std::string()),
531  info(std::map<std::string, std::string>())
532  {
533  }
534 
535  std::string tableName;
536  std::string action;
537  std::string value;
538  std::string typeId;
539  std::string typeDefinition;
540  std::map<std::string, std::vector<std::string> > properties;
541  std::string label;
542  std::map<std::string, std::string> info;
543  };
544 }
545 
546 namespace avro
547 {
548  template<> struct codec_traits<gpudb::AlterTableResponse>
549  {
550  static void encode(Encoder& e, const gpudb::AlterTableResponse& v)
551  {
552  ::avro::encode(e, v.tableName);
553  ::avro::encode(e, v.action);
554  ::avro::encode(e, v.value);
555  ::avro::encode(e, v.typeId);
556  ::avro::encode(e, v.typeDefinition);
557  ::avro::encode(e, v.properties);
558  ::avro::encode(e, v.label);
559  ::avro::encode(e, v.info);
560  }
561 
562  static void decode(Decoder& d, gpudb::AlterTableResponse& v)
563  {
564  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
565  {
566  const std::vector<size_t> fo = rd->fieldOrder();
567 
568  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
569  {
570  switch (*it)
571  {
572  case 0:
573  ::avro::decode(d, v.tableName);
574  break;
575 
576  case 1:
577  ::avro::decode(d, v.action);
578  break;
579 
580  case 2:
581  ::avro::decode(d, v.value);
582  break;
583 
584  case 3:
585  ::avro::decode(d, v.typeId);
586  break;
587 
588  case 4:
589  ::avro::decode(d, v.typeDefinition);
590  break;
591 
592  case 5:
593  ::avro::decode(d, v.properties);
594  break;
595 
596  case 6:
597  ::avro::decode(d, v.label);
598  break;
599 
600  case 7:
601  ::avro::decode(d, v.info);
602  break;
603 
604  default:
605  break;
606  }
607  }
608  }
609  else
610  {
611  ::avro::decode(d, v.tableName);
612  ::avro::decode(d, v.action);
613  ::avro::decode(d, v.value);
614  ::avro::decode(d, v.typeId);
615  ::avro::decode(d, v.typeDefinition);
616  ::avro::decode(d, v.properties);
617  ::avro::decode(d, v.label);
618  ::avro::decode(d, v.info);
619  }
620  }
621  };
622 }
623 
624 #endif
A set of output parameters for const.
Definition: alter_table.h:516
AlterTableResponse()
Constructs an AlterTableResponse object with default parameter values.
Definition: alter_table.h:523
std::map< std::string, std::string > options
Definition: alter_table.h:395
std::map< std::string, std::vector< std::string > > properties
Definition: alter_table.h:540
std::map< std::string, std::string > info
Definition: alter_table.h:542
A set of input parameters for const.
Definition: alter_table.h:72
AlterTableRequest()
Constructs an AlterTableRequest object with default parameter values.
Definition: alter_table.h:79
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:384