GPUdb C++ API  Version 6.2.0.3
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  {
136  }
137 
138  std::vector<std::string> tableNames;
139  std::map<std::string, std::string> metadataMap;
140  };
141 }
142 
143 namespace avro
144 {
145  template<> struct codec_traits<gpudb::AlterTableMetadataResponse>
146  {
147  static void encode(Encoder& e, const gpudb::AlterTableMetadataResponse& v)
148  {
149  ::avro::encode(e, v.tableNames);
150  ::avro::encode(e, v.metadataMap);
151  }
152 
153  static void decode(Decoder& d, gpudb::AlterTableMetadataResponse& v)
154  {
155  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
156  {
157  const std::vector<size_t> fo = rd->fieldOrder();
158 
159  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
160  {
161  switch (*it)
162  {
163  case 0:
164  ::avro::decode(d, v.tableNames);
165  break;
166 
167  case 1:
168  ::avro::decode(d, v.metadataMap);
169  break;
170 
171  default:
172  break;
173  }
174  }
175  }
176  else
177  {
178  ::avro::decode(d, v.tableNames);
179  ::avro::decode(d, v.metadataMap);
180  }
181  }
182  };
183 }
184 
185 #endif
AlterTableMetadataRequest()
Constructs an AlterTableMetadataRequest object with default parameter values.
std::map< std::string, std::string > metadataMap
A set of input parameters for alterTableMetadata(const AlterTableMetadataRequest&) 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 alterTableMetadata(const AlterTableMetadataRequest&) const...
std::map< std::string, std::string > metadataMap
std::map< std::string, std::string > options
std::vector< std::string > tableNames
std::vector< std::string > tableNames