GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
create_materialized_view.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 __CREATE_MATERIALIZED_VIEW_H__
7 #define __CREATE_MATERIALIZED_VIEW_H__
8 
9 namespace gpudb
10 {
11 
29  {
30 
36  tableName(std::string()),
37  options(std::map<std::string, std::string>())
38  {
39  }
40 
118  CreateMaterializedViewRequest(const std::string& tableName_, const std::map<std::string, std::string>& options_):
119  tableName( tableName_ ),
120  options( options_ )
121  {
122  }
123 
124  std::string tableName;
125  std::map<std::string, std::string> options;
126  };
127 }
128 
129 namespace avro
130 {
131  template<> struct codec_traits<gpudb::CreateMaterializedViewRequest>
132  {
133  static void encode(Encoder& e, const gpudb::CreateMaterializedViewRequest& v)
134  {
135  ::avro::encode(e, v.tableName);
136  ::avro::encode(e, v.options);
137  }
138 
139  static void decode(Decoder& d, gpudb::CreateMaterializedViewRequest& v)
140  {
141  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
142  {
143  const std::vector<size_t> fo = rd->fieldOrder();
144 
145  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
146  {
147  switch (*it)
148  {
149  case 0:
150  ::avro::decode(d, v.tableName);
151  break;
152 
153  case 1:
154  ::avro::decode(d, v.options);
155  break;
156 
157  default:
158  break;
159  }
160  }
161  }
162  else
163  {
164  ::avro::decode(d, v.tableName);
165  ::avro::decode(d, v.options);
166  }
167  }
168  };
169 }
170 
171 namespace gpudb
172 {
173 
191  {
192 
198  tableName(std::string()),
199  viewId(std::string()),
200  info(std::map<std::string, std::string>())
201  {
202  }
203 
204  std::string tableName;
205  std::string viewId;
206  std::map<std::string, std::string> info;
207  };
208 }
209 
210 namespace avro
211 {
212  template<> struct codec_traits<gpudb::CreateMaterializedViewResponse>
213  {
214  static void encode(Encoder& e, const gpudb::CreateMaterializedViewResponse& v)
215  {
216  ::avro::encode(e, v.tableName);
217  ::avro::encode(e, v.viewId);
218  ::avro::encode(e, v.info);
219  }
220 
221  static void decode(Decoder& d, gpudb::CreateMaterializedViewResponse& v)
222  {
223  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
224  {
225  const std::vector<size_t> fo = rd->fieldOrder();
226 
227  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
228  {
229  switch (*it)
230  {
231  case 0:
232  ::avro::decode(d, v.tableName);
233  break;
234 
235  case 1:
236  ::avro::decode(d, v.viewId);
237  break;
238 
239  case 2:
240  ::avro::decode(d, v.info);
241  break;
242 
243  default:
244  break;
245  }
246  }
247  }
248  else
249  {
250  ::avro::decode(d, v.tableName);
251  ::avro::decode(d, v.viewId);
252  ::avro::decode(d, v.info);
253  }
254  }
255  };
256 }
257 
258 #endif
CreateMaterializedViewRequest()
Constructs a CreateMaterializedViewRequest object with default parameter values.
A set of output parameters for const.
A set of input parameters for const.
CreateMaterializedViewResponse()
Constructs a CreateMaterializedViewResponse object with default parameter values. ...
CreateMaterializedViewRequest(const std::string &tableName_, const std::map< std::string, std::string > &options_)
Constructs a CreateMaterializedViewRequest object with the specified parameters.
std::map< std::string, std::string > options
std::map< std::string, std::string > info