GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
clear_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 __CLEAR_TABLE_H__
7 #define __CLEAR_TABLE_H__
8 
9 namespace gpudb
10 {
11 
22  {
23 
28  tableName(std::string()),
29  authorization(std::string()),
30  options(std::map<std::string, std::string>())
31  {
32  }
33 
61  ClearTableRequest(const std::string& tableName_, const std::string& authorization_, const std::map<std::string, std::string>& options_):
62  tableName( tableName_ ),
63  authorization( authorization_ ),
64  options( options_ )
65  {
66  }
67 
68  std::string tableName;
69  std::string authorization;
70  std::map<std::string, std::string> options;
71  };
72 }
73 
74 namespace avro
75 {
76  template<> struct codec_traits<gpudb::ClearTableRequest>
77  {
78  static void encode(Encoder& e, const gpudb::ClearTableRequest& v)
79  {
80  ::avro::encode(e, v.tableName);
81  ::avro::encode(e, v.authorization);
82  ::avro::encode(e, v.options);
83  }
84 
85  static void decode(Decoder& d, gpudb::ClearTableRequest& v)
86  {
87  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
88  {
89  const std::vector<size_t> fo = rd->fieldOrder();
90 
91  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
92  {
93  switch (*it)
94  {
95  case 0:
96  ::avro::decode(d, v.tableName);
97  break;
98 
99  case 1:
100  ::avro::decode(d, v.authorization);
101  break;
102 
103  case 2:
104  ::avro::decode(d, v.options);
105  break;
106 
107  default:
108  break;
109  }
110  }
111  }
112  else
113  {
114  ::avro::decode(d, v.tableName);
115  ::avro::decode(d, v.authorization);
116  ::avro::decode(d, v.options);
117  }
118  }
119  };
120 }
121 
122 namespace gpudb
123 {
124 
135  {
136 
142  tableName(std::string()),
143  info(std::map<std::string, std::string>())
144  {
145  }
146 
147  std::string tableName;
148  std::map<std::string, std::string> info;
149  };
150 }
151 
152 namespace avro
153 {
154  template<> struct codec_traits<gpudb::ClearTableResponse>
155  {
156  static void encode(Encoder& e, const gpudb::ClearTableResponse& v)
157  {
158  ::avro::encode(e, v.tableName);
159  ::avro::encode(e, v.info);
160  }
161 
162  static void decode(Decoder& d, gpudb::ClearTableResponse& v)
163  {
164  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
165  {
166  const std::vector<size_t> fo = rd->fieldOrder();
167 
168  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
169  {
170  switch (*it)
171  {
172  case 0:
173  ::avro::decode(d, v.tableName);
174  break;
175 
176  case 1:
177  ::avro::decode(d, v.info);
178  break;
179 
180  default:
181  break;
182  }
183  }
184  }
185  else
186  {
187  ::avro::decode(d, v.tableName);
188  ::avro::decode(d, v.info);
189  }
190  }
191  };
192 }
193 
194 #endif
std::map< std::string, std::string > info
Definition: clear_table.h:148
A set of input parameters for const.
Definition: clear_table.h:21
ClearTableRequest(const std::string &tableName_, const std::string &authorization_, const std::map< std::string, std::string > &options_)
Constructs a ClearTableRequest object with the specified parameters.
Definition: clear_table.h:61
A set of output parameters for const.
Definition: clear_table.h:134
ClearTableResponse()
Constructs a ClearTableResponse object with default parameter values.
Definition: clear_table.h:141
std::string authorization
Definition: clear_table.h:69
std::map< std::string, std::string > options
Definition: clear_table.h:70
ClearTableRequest()
Constructs a ClearTableRequest object with default parameter values.
Definition: clear_table.h:27