GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
clear_statistics.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_STATISTICS_H__
7 #define __CLEAR_STATISTICS_H__
8 
9 namespace gpudb
10 {
11 
20  {
21 
27  tableName(std::string()),
28  columnName(std::string()),
29  options(std::map<std::string, std::string>())
30  {
31  }
32 
45  ClearStatisticsRequest(const std::string& tableName_, const std::string& columnName_, const std::map<std::string, std::string>& options_):
46  tableName( tableName_ ),
47  columnName( columnName_ ),
48  options( options_ )
49  {
50  }
51 
52  std::string tableName;
53  std::string columnName;
54  std::map<std::string, std::string> options;
55  };
56 }
57 
58 namespace avro
59 {
60  template<> struct codec_traits<gpudb::ClearStatisticsRequest>
61  {
62  static void encode(Encoder& e, const gpudb::ClearStatisticsRequest& v)
63  {
64  ::avro::encode(e, v.tableName);
65  ::avro::encode(e, v.columnName);
66  ::avro::encode(e, v.options);
67  }
68 
69  static void decode(Decoder& d, gpudb::ClearStatisticsRequest& v)
70  {
71  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
72  {
73  const std::vector<size_t> fo = rd->fieldOrder();
74 
75  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
76  {
77  switch (*it)
78  {
79  case 0:
80  ::avro::decode(d, v.tableName);
81  break;
82 
83  case 1:
84  ::avro::decode(d, v.columnName);
85  break;
86 
87  case 2:
88  ::avro::decode(d, v.options);
89  break;
90 
91  default:
92  break;
93  }
94  }
95  }
96  else
97  {
98  ::avro::decode(d, v.tableName);
99  ::avro::decode(d, v.columnName);
100  ::avro::decode(d, v.options);
101  }
102  }
103  };
104 }
105 
106 namespace gpudb
107 {
108 
117  {
118 
124  tableName(std::string()),
125  columnName(std::string()),
126  info(std::map<std::string, std::string>())
127  {
128  }
129 
130  std::string tableName;
131  std::string columnName;
132  std::map<std::string, std::string> info;
133  };
134 }
135 
136 namespace avro
137 {
138  template<> struct codec_traits<gpudb::ClearStatisticsResponse>
139  {
140  static void encode(Encoder& e, const gpudb::ClearStatisticsResponse& v)
141  {
142  ::avro::encode(e, v.tableName);
143  ::avro::encode(e, v.columnName);
144  ::avro::encode(e, v.info);
145  }
146 
147  static void decode(Decoder& d, gpudb::ClearStatisticsResponse& v)
148  {
149  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
150  {
151  const std::vector<size_t> fo = rd->fieldOrder();
152 
153  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
154  {
155  switch (*it)
156  {
157  case 0:
158  ::avro::decode(d, v.tableName);
159  break;
160 
161  case 1:
162  ::avro::decode(d, v.columnName);
163  break;
164 
165  case 2:
166  ::avro::decode(d, v.info);
167  break;
168 
169  default:
170  break;
171  }
172  }
173  }
174  else
175  {
176  ::avro::decode(d, v.tableName);
177  ::avro::decode(d, v.columnName);
178  ::avro::decode(d, v.info);
179  }
180  }
181  };
182 }
183 
184 #endif
ClearStatisticsRequest(const std::string &tableName_, const std::string &columnName_, const std::map< std::string, std::string > &options_)
Constructs a ClearStatisticsRequest object with the specified parameters.
ClearStatisticsResponse()
Constructs a ClearStatisticsResponse object with default parameter values.
A set of output parameters for const.
std::map< std::string, std::string > info
A set of input parameters for const.
std::map< std::string, std::string > options
ClearStatisticsRequest()
Constructs a ClearStatisticsRequest object with default parameter values.