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