GPUdb C++ API  Version 7.0.19.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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  info(std::map<std::string, std::string>())
180  {
181  }
182 
183  std::string triggerId;
184  std::map<std::string, std::string> info;
185  };
186 }
187 
188 namespace avro
189 {
190  template<> struct codec_traits<gpudb::CreateTriggerByRangeResponse>
191  {
192  static void encode(Encoder& e, const gpudb::CreateTriggerByRangeResponse& v)
193  {
194  ::avro::encode(e, v.triggerId);
195  ::avro::encode(e, v.info);
196  }
197 
198  static void decode(Decoder& d, gpudb::CreateTriggerByRangeResponse& v)
199  {
200  if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
201  {
202  const std::vector<size_t> fo = rd->fieldOrder();
203 
204  for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
205  {
206  switch (*it)
207  {
208  case 0:
209  ::avro::decode(d, v.triggerId);
210  break;
211 
212  case 1:
213  ::avro::decode(d, v.info);
214  break;
215 
216  default:
217  break;
218  }
219  }
220  }
221  else
222  {
223  ::avro::decode(d, v.triggerId);
224  ::avro::decode(d, v.info);
225  }
226  }
227  };
228 }
229 
230 #endif
A set of input parameters for const.
std::map< std::string, std::string > info
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 const.