GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
alter_tier.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_TIER_H__
7 #define __ALTER_TIER_H__
8 
9 namespace gpudb
10 {
11 
26  {
27 
32  name(std::string()),
33  options(std::map<std::string, std::string>())
34  {
35  }
36 
59  AlterTierRequest(const std::string& name_, const std::map<std::string, std::string>& options_):
60  name( name_ ),
61  options( options_ )
62  {
63  }
64 
65  std::string name;
66  std::map<std::string, std::string> options;
67  };
68 }
69 
70 namespace avro
71 {
72  template<> struct codec_traits<gpudb::AlterTierRequest>
73  {
74  static void encode(Encoder& e, const gpudb::AlterTierRequest& v)
75  {
76  ::avro::encode(e, v.name);
77  ::avro::encode(e, v.options);
78  }
79 
80  static void decode(Decoder& d, gpudb::AlterTierRequest& v)
81  {
82  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
83  {
84  const std::vector<size_t> fo = rd->fieldOrder();
85 
86  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
87  {
88  switch (*it)
89  {
90  case 0:
91  ::avro::decode(d, v.name);
92  break;
93 
94  case 1:
95  ::avro::decode(d, v.options);
96  break;
97 
98  default:
99  break;
100  }
101  }
102  }
103  else
104  {
105  ::avro::decode(d, v.name);
106  ::avro::decode(d, v.options);
107  }
108  }
109  };
110 }
111 
112 namespace gpudb
113 {
114 
129  {
130 
136  name(std::string()),
137  info(std::map<std::string, std::string>())
138  {
139  }
140 
141  std::string name;
142  std::map<std::string, std::string> info;
143  };
144 }
145 
146 namespace avro
147 {
148  template<> struct codec_traits<gpudb::AlterTierResponse>
149  {
150  static void encode(Encoder& e, const gpudb::AlterTierResponse& v)
151  {
152  ::avro::encode(e, v.name);
153  ::avro::encode(e, v.info);
154  }
155 
156  static void decode(Decoder& d, gpudb::AlterTierResponse& v)
157  {
158  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
159  {
160  const std::vector<size_t> fo = rd->fieldOrder();
161 
162  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
163  {
164  switch (*it)
165  {
166  case 0:
167  ::avro::decode(d, v.name);
168  break;
169 
170  case 1:
171  ::avro::decode(d, v.info);
172  break;
173 
174  default:
175  break;
176  }
177  }
178  }
179  else
180  {
181  ::avro::decode(d, v.name);
182  ::avro::decode(d, v.info);
183  }
184  }
185  };
186 }
187 
188 #endif
AlterTierRequest(const std::string &name_, const std::map< std::string, std::string > &options_)
Constructs an AlterTierRequest object with the specified parameters.
Definition: alter_tier.h:59
AlterTierResponse()
Constructs an AlterTierResponse object with default parameter values.
Definition: alter_tier.h:135
std::map< std::string, std::string > info
Definition: alter_tier.h:142
AlterTierRequest()
Constructs an AlterTierRequest object with default parameter values.
Definition: alter_tier.h:31
A set of input parameters for const.
Definition: alter_tier.h:25
std::map< std::string, std::string > options
Definition: alter_tier.h:66
A set of output parameters for const.
Definition: alter_tier.h:128