6 #ifndef __ALTER_TABLE_H__ 7 #define __ALTER_TABLE_H__ 68 options(std::map<std::string, std::string>())
274 AlterTableRequest(
const std::string& tableName_,
const std::string& action_,
const std::string& value_,
const std::map<std::string, std::string>& options_):
296 ::avro::encode(e, v.
action);
297 ::avro::encode(e, v.
value);
303 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
305 const std::vector<size_t> fo = rd->fieldOrder();
307 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
316 ::avro::decode(d, v.
action);
320 ::avro::decode(d, v.
value);
335 ::avro::decode(d, v.
action);
336 ::avro::decode(d, v.
value);
401 value(std::string()),
402 typeId(std::string()),
403 typeDefinition(std::string()),
404 properties(std::map<std::string, std::vector<std::string> >()),
426 ::avro::encode(e, v.
action);
427 ::avro::encode(e, v.
value);
428 ::avro::encode(e, v.
typeId);
431 ::avro::encode(e, v.
label);
436 if (::avro::ResolvingDecoder *rd = dynamic_cast< ::avro::ResolvingDecoder*>(&d))
438 const std::vector<size_t> fo = rd->fieldOrder();
440 for (std::vector<size_t>::const_iterator it = fo.begin(); it != fo.end(); ++it)
449 ::avro::decode(d, v.
action);
453 ::avro::decode(d, v.
value);
457 ::avro::decode(d, v.
typeId);
469 ::avro::decode(d, v.
label);
480 ::avro::decode(d, v.
action);
481 ::avro::decode(d, v.
value);
482 ::avro::decode(d, v.
typeId);
485 ::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.