GPUdb C++ API  Version 6.2.0.3
show_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 __SHOW_TABLE_METADATA_H__
7 #define __SHOW_TABLE_METADATA_H__
8 
9 namespace gpudb
10 {
11 
19  {
20 
26  tableNames(std::vector<std::string>()),
27  options(std::map<std::string, std::string>())
28  {
29  }
30 
41  ShowTableMetadataRequest(const std::vector<std::string>& tableNames_, const std::map<std::string, std::string>& options_):
42  tableNames( tableNames_ ),
43  options( options_ )
44  {
45  }
46 
47  std::vector<std::string> tableNames;
48  std::map<std::string, std::string> options;
49  };
50 }
51 
52 namespace avro
53 {
54  template<> struct codec_traits<gpudb::ShowTableMetadataRequest>
55  {
56  static void encode(Encoder& e, const gpudb::ShowTableMetadataRequest& v)
57  {
58  ::avro::encode(e, v.tableNames);
59  ::avro::encode(e, v.options);
60  }
61 
62  static void decode(Decoder& d, gpudb::ShowTableMetadataRequest& v)
63  {
64  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
65  {
66  const std::vector<size_t> fo = rd->fieldOrder();
67 
68  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
69  {
70  switch (*it)
71  {
72  case 0:
73  ::avro::decode(d, v.tableNames);
74  break;
75 
76  case 1:
77  ::avro::decode(d, v.options);
78  break;
79 
80  default:
81  break;
82  }
83  }
84  }
85  else
86  {
87  ::avro::decode(d, v.tableNames);
88  ::avro::decode(d, v.options);
89  }
90  }
91  };
92 }
93 
94 namespace gpudb
95 {
96 
104  {
105 
111  tableNames(std::vector<std::string>()),
112  metadataMaps(std::vector<std::map<std::string, std::string> >())
113  {
114  }
115 
116  std::vector<std::string> tableNames;
117  std::vector<std::map<std::string, std::string> > metadataMaps;
118  };
119 }
120 
121 namespace avro
122 {
123  template<> struct codec_traits<gpudb::ShowTableMetadataResponse>
124  {
125  static void encode(Encoder& e, const gpudb::ShowTableMetadataResponse& v)
126  {
127  ::avro::encode(e, v.tableNames);
128  ::avro::encode(e, v.metadataMaps);
129  }
130 
131  static void decode(Decoder& d, gpudb::ShowTableMetadataResponse& v)
132  {
133  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
134  {
135  const std::vector<size_t> fo = rd->fieldOrder();
136 
137  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
138  {
139  switch (*it)
140  {
141  case 0:
142  ::avro::decode(d, v.tableNames);
143  break;
144 
145  case 1:
146  ::avro::decode(d, v.metadataMaps);
147  break;
148 
149  default:
150  break;
151  }
152  }
153  }
154  else
155  {
156  ::avro::decode(d, v.tableNames);
157  ::avro::decode(d, v.metadataMaps);
158  }
159  }
160  };
161 }
162 
163 #endif
ShowTableMetadataRequest(const std::vector< std::string > &tableNames_, const std::map< std::string, std::string > &options_)
Constructs a ShowTableMetadataRequest object with the specified parameters.
ShowTableMetadataRequest()
Constructs a ShowTableMetadataRequest object with default parameter values.
A set of output parameters for showTableMetadata(const ShowTableMetadataRequest&) const...
A set of input parameters for showTableMetadata(const ShowTableMetadataRequest&) const.
ShowTableMetadataResponse()
Constructs a ShowTableMetadataResponse object with default parameter values.
std::vector< std::string > tableNames
std::vector< std::map< std::string, std::string > > metadataMaps
std::map< std::string, std::string > options
std::vector< std::string > tableNames