GPUdb C++ API  Version 6.2.0.3
create_trigger_by_range.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 __CREATE_TRIGGER_BY_RANGE_H__
7 #define __CREATE_TRIGGER_BY_RANGE_H__
8 
9 namespace gpudb
10 {
11 
32  {
33 
39  requestId(std::string()),
40  tableNames(std::vector<std::string>()),
41  columnName(std::string()),
42  min(double()),
43  max(double()),
44  options(std::map<std::string, std::string>())
45  {
46  }
47 
63  CreateTriggerByRangeRequest(const std::string& requestId_, const std::vector<std::string>& tableNames_, const std::string& columnName_, const double min_, const double max_, const std::map<std::string, std::string>& options_):
64  requestId( requestId_ ),
65  tableNames( tableNames_ ),
66  columnName( columnName_ ),
67  min( min_ ),
68  max( max_ ),
69  options( options_ )
70  {
71  }
72 
73  std::string requestId;
74  std::vector<std::string> tableNames;
75  std::string columnName;
76  double min;
77  double max;
78  std::map<std::string, std::string> options;
79  };
80 }
81 
82 namespace avro
83 {
84  template<> struct codec_traits<gpudb::CreateTriggerByRangeRequest>
85  {
86  static void encode(Encoder& e, const gpudb::CreateTriggerByRangeRequest& v)
87  {
88  ::avro::encode(e, v.requestId);
89  ::avro::encode(e, v.tableNames);
90  ::avro::encode(e, v.columnName);
91  ::avro::encode(e, v.min);
92  ::avro::encode(e, v.max);
93  ::avro::encode(e, v.options);
94  }
95 
96  static void decode(Decoder& d, gpudb::CreateTriggerByRangeRequest& v)
97  {
98  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
99  {
100  const std::vector<size_t> fo = rd->fieldOrder();
101 
102  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
103  {
104  switch (*it)
105  {
106  case 0:
107  ::avro::decode(d, v.requestId);
108  break;
109 
110  case 1:
111  ::avro::decode(d, v.tableNames);
112  break;
113 
114  case 2:
115  ::avro::decode(d, v.columnName);
116  break;
117 
118  case 3:
119  ::avro::decode(d, v.min);
120  break;
121 
122  case 4:
123  ::avro::decode(d, v.max);
124  break;
125 
126  case 5:
127  ::avro::decode(d, v.options);
128  break;
129 
130  default:
131  break;
132  }
133  }
134  }
135  else
136  {
137  ::avro::decode(d, v.requestId);
138  ::avro::decode(d, v.tableNames);
139  ::avro::decode(d, v.columnName);
140  ::avro::decode(d, v.min);
141  ::avro::decode(d, v.max);
142  ::avro::decode(d, v.options);
143  }
144  }
145  };
146 }
147 
148 namespace gpudb
149 {
150 
171  {
172 
178  triggerId(std::string())
179  {
180  }
181 
182  std::string triggerId;
183  };
184 }
185 
186 namespace avro
187 {
188  template<> struct codec_traits<gpudb::CreateTriggerByRangeResponse>
189  {
190  static void encode(Encoder& e, const gpudb::CreateTriggerByRangeResponse& v)
191  {
192  ::avro::encode(e, v.triggerId);
193  }
194 
195  static void decode(Decoder& d, gpudb::CreateTriggerByRangeResponse& v)
196  {
197  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
198  {
199  const std::vector<size_t> fo = rd->fieldOrder();
200 
201  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
202  {
203  switch (*it)
204  {
205  case 0:
206  ::avro::decode(d, v.triggerId);
207  break;
208 
209  default:
210  break;
211  }
212  }
213  }
214  else
215  {
216  ::avro::decode(d, v.triggerId);
217  }
218  }
219  };
220 }
221 
222 #endif
A set of input parameters for createTriggerByRange(const CreateTriggerByRangeRequest&) const...
CreateTriggerByRangeRequest(const std::string &requestId_, const std::vector< std::string > &tableNames_, const std::string &columnName_, const double min_, const double max_, const std::map< std::string, std::string > &options_)
Constructs a CreateTriggerByRangeRequest object with the specified parameters.
CreateTriggerByRangeRequest()
Constructs a CreateTriggerByRangeRequest object with default parameter values.
CreateTriggerByRangeResponse()
Constructs a CreateTriggerByRangeResponse object with default parameter values.
std::map< std::string, std::string > options
A set of output parameters for createTriggerByRange(const CreateTriggerByRangeRequest&) const...