6 #ifndef __ALTER_TABLE_H__ 7 #define __ALTER_TABLE_H__ 64 options(std::map<std::string, std::string>())
212 AlterTableRequest(
const std::string& tableName_,
const std::string& action_,
const std::string& value_,
const std::map<std::string, std::string>& options_):
234 ::avro::encode(e, v.
action);
235 ::avro::encode(e, v.
value);
241 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
243 const std::vector<size_t> fo = rd->fieldOrder();
245 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
254 ::avro::decode(d, v.
action);
258 ::avro::decode(d, v.
value);
273 ::avro::decode(d, v.
action);
274 ::avro::decode(d, v.
value);
335 value(std::string()),
336 typeId(std::string()),
337 typeDefinition(std::string()),
338 properties(std::map<std::string, std::vector<std::string> >()),
360 ::avro::encode(e, v.
action);
361 ::avro::encode(e, v.
value);
362 ::avro::encode(e, v.
typeId);
365 ::avro::encode(e, v.
label);
370 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
372 const std::vector<size_t> fo = rd->fieldOrder();
374 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
383 ::avro::decode(d, v.
action);
387 ::avro::decode(d, v.
value);
391 ::avro::decode(d, v.
typeId);
403 ::avro::decode(d, v.
label);
414 ::avro::decode(d, v.
action);
415 ::avro::decode(d, v.
value);
416 ::avro::decode(d, v.
typeId);
419 ::avro::decode(d, v.
label);
A set of output parameters for alterTable(const AlterTableRequest&) const.
AlterTableResponse()
Constructs an AlterTableResponse object with default parameter values.
std::map< std::string, std::string > options
std::map< std::string, std::vector< std::string > > properties
A set of input parameters for alterTable(const AlterTableRequest&) const.
AlterTableRequest()
Constructs an AlterTableRequest object with default parameter values.
std::string typeDefinition
AlterTableRequest(const std::string &tableName_, const std::string &action_, const std::string &value_, const std::map< std::string, std::string > &options_)
Constructs an AlterTableRequest object with the specified parameters.