Kudu C++ client API
|
A representation of a table on a particular cluster. More...
#include <client.h>
Public Member Functions | |
const std::string & | name () const |
const std::string & | id () const |
const KuduSchema & | schema () const |
int | num_replicas () const |
KuduInsert * | NewInsert () |
KuduUpsert * | NewUpsert () |
KuduUpdate * | NewUpdate () |
KuduDelete * | NewDelete () |
KuduPredicate * | NewComparisonPredicate (const Slice &col_name, KuduPredicate::ComparisonOp op, KuduValue *value) |
KuduClient * | client () const |
const PartitionSchema & | partition_schema () const |
Friends | |
class | KuduClient |
A representation of a table on a particular cluster.
A KuduTable holds the current schema of the table. Any given KuduTable object belongs to a specific KuduClient object.
Upon construction, the table is looked up in the catalog (or catalog cache), and the schema fetched for introspection.
This class is also a factory for write operation on the table. The provided operations are:
KuduClient* kudu::client::KuduTable::client | ( | ) | const |
const std::string& kudu::client::KuduTable::id | ( | ) | const |
Get the table's ID.
This is an internal identifier which uniquely identifies a table. If the table is deleted and recreated with the same name, the ID will distinguish the old table from the new.
const std::string& kudu::client::KuduTable::name | ( | ) | const |
KuduPredicate* kudu::client::KuduTable::NewComparisonPredicate | ( | const Slice & | col_name, |
KuduPredicate::ComparisonOp | op, | ||
KuduValue * | value | ||
) |
Create a new comparison predicate.
This method creates new instance of a comparison predicate which can be used for scanners on this table object.
[in] | col_name | Name of column to use for comparison. |
[in] | op | Comparison operator to use. |
[in] | value | The type of the value must correspond to the type of the column to which the predicate is to be applied. For example, if the given column is any type of integer, the KuduValue should also be an integer, with its value in the valid range for the column type. No attempt is made to cast between floating point and integer values, or numeric and string values. |
value
Non-NULL is returned both in success and error cases. In the case of an error (e.g. invalid column name), a non-NULL value is still returned. The error will be returned when attempting to add this predicate to a KuduScanner. KuduDelete* kudu::client::KuduTable::NewDelete | ( | ) |
DELETE
operation for this table. It is the caller's responsibility to free the result, unless it is passed to KuduSession::Apply(). KuduInsert* kudu::client::KuduTable::NewInsert | ( | ) |
INSERT
operation for this table. It is the caller's responsibility to free the result, unless it is passed to KuduSession::Apply(). KuduUpdate* kudu::client::KuduTable::NewUpdate | ( | ) |
UPDATE
operation for this table. It is the caller's responsibility to free the result, unless it is passed to KuduSession::Apply(). KuduUpsert* kudu::client::KuduTable::NewUpsert | ( | ) |
UPSERT
operation for this table. It is the caller's responsibility to free the result, unless it is passed to KuduSession::Apply(). int kudu::client::KuduTable::num_replicas | ( | ) | const |
const PartitionSchema& kudu::client::KuduTable::partition_schema | ( | ) | const |
const KuduSchema& kudu::client::KuduTable::schema | ( | ) | const |