GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
alter_table_metadata.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_TABLE_METADATA_H__
7 #define __ALTER_TABLE_METADATA_H__
8 
9 namespace gpudb
10 {
11 
22  {
23 
29  tableNames(std::vector<std::string>()),
30  metadataMap(std::map<std::string, std::string>()),
31  options(std::map<std::string, std::string>())
32  {
33  }
34 
52  AlterTableMetadataRequest(const std::vector<std::string>& tableNames_, const std::map<std::string, std::string>& metadataMap_, const std::map<std::string, std::string>& options_):
53  tableNames( tableNames_ ),
54  metadataMap( metadataMap_ ),
55  options( options_ )
56  {
57  }
58 
59  std::vector<std::string> tableNames;
60  std::map<std::string, std::string> metadataMap;
61  std::map<std::string, std::string> options;
62  };
63 }
64 
65 namespace avro
66 {
67  template<> struct codec_traits<gpudb::AlterTableMetadataRequest>
68  {
69  static void encode(Encoder& e, const gpudb::AlterTableMetadataRequest& v)
70  {
71  ::avro::encode(e, v.tableNames);
72  ::avro::encode(e, v.metadataMap);
73  ::avro::encode(e, v.options);
74  }
75 
76  static void decode(Decoder& d, gpudb::AlterTableMetadataRequest& v)
77  {
78  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
79  {
80  const std::vector<size_t> fo = rd->fieldOrder();
81 
82  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
83  {
84  switch (*it)
85  {
86  case 0:
87  ::avro::decode(d, v.tableNames);
88  break;
89 
90  case 1:
91  ::avro::decode(d, v.metadataMap);
92  break;
93 
94  case 2:
95  ::avro::decode(d, v.options);
96  break;
97 
98  default:
99  break;
100  }
101  }
102  }
103  else
104  {
105  ::avro::decode(d, v.tableNames);
106  ::avro::decode(d, v.metadataMap);
107  ::avro::decode(d, v.options);
108  }
109  }
110  };
111 }
112 
113 namespace gpudb
114 {
115 
126  {
127 
133  tableNames(std::vector<std::string>()),
134  metadataMap(std::map<std::string, std::string>()),
135  info(std::map<std::string, std::string>())
136  {
137  }
138 
139  std::vector<std::string> tableNames;
140  std::map<std::string, std::string> metadataMap;
141  std::map<std::string, std::string> info;
142  };
143 }
144 
145 namespace avro
146 {
147  template<> struct codec_traits<gpudb::AlterTableMetadataResponse>
148  {
149  static void encode(Encoder& e, const gpudb::AlterTableMetadataResponse& v)
150  {
151  ::avro::encode(e, v.tableNames);
152  ::avro::encode(e, v.metadataMap);
153  ::avro::encode(e, v.info);
154  }
155 
156  static void decode(Decoder& d, gpudb::AlterTableMetadataResponse& 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.tableNames);
168  break;
169 
170  case 1:
171  ::avro::decode(d, v.metadataMap);
172  break;
173 
174  case 2:
175  ::avro::decode(d, v.info);
176  break;
177 
178  default:
179  break;
180  }
181  }
182  }
183  else
184  {
185  ::avro::decode(d, v.tableNames);
186  ::avro::decode(d, v.metadataMap);
187  ::avro::decode(d, v.info);
188  }
189  }
190  };
191 }
192 
193 #endif
AlterTableMetadataRequest()
Constructs an AlterTableMetadataRequest object with default parameter values.
std::map< std::string, std::string > metadataMap
A set of input parameters for const.
AlterTableMetadataRequest(const std::vector< std::string > &tableNames_, const std::map< std::string, std::string > &metadataMap_, const std::map< std::string, std::string > &options_)
Constructs an AlterTableMetadataRequest object with the specified parameters.
AlterTableMetadataResponse()
Constructs an AlterTableMetadataResponse object with default parameter values.
A set of output parameters for const.
std::map< std::string, std::string > metadataMap
std::map< std::string, std::string > options
std::vector< std::string > tableNames
std::map< std::string, std::string > info
std::vector< std::string > tableNames