Modifier and Type | Method and Description |
---|---|
static Row |
ColumnDefinition.readSchema(java.lang.String ksName,
java.lang.String cfName) |
Modifier and Type | Method and Description |
---|---|
static java.util.Map<java.lang.String,CFMetaData> |
KSMetaData.deserializeColumnFamilies(Row row)
Deserialize ColumnFamilies from low-level schema representation, all of them belong to the same keyspace
|
static java.util.List<ColumnDefinition> |
ColumnDefinition.fromSchema(Row row,
CFMetaData cfm)
Deserialize columns from low-level representation
|
static KSMetaData |
KSMetaData.fromSchema(Row row,
java.lang.Iterable<CFMetaData> cfms)
Deserialize only Keyspace attributes without nested ColumnFamilies
|
static KSMetaData |
KSMetaData.fromSchema(Row serializedKs,
Row serializedCFs)
Deserialize Keyspace with nested ColumnFamilies
|
static boolean |
Schema.ignoredSchemaRow(Row row) |
static boolean |
Schema.invalidSchemaRow(Row row) |
Modifier and Type | Method and Description |
---|---|
static UntypedResultSet |
QueryProcessor.resultify(java.lang.String query,
Row row) |
Modifier and Type | Method and Description |
---|---|
ResultSet |
SelectStatement.process(java.util.List<Row> rows) |
Modifier and Type | Field and Description |
---|---|
java.util.List<Row> |
RangeSliceReply.rows |
Modifier and Type | Method and Description |
---|---|
Row |
Row.RowSerializer.deserialize(java.io.DataInput dis,
int version) |
Row |
Row.RowSerializer.deserialize(java.io.DataInput dis,
int version,
IColumnSerializer.Flag flag,
ISortedColumns.Factory factory) |
Row |
Table.getRow(QueryFilter filter) |
abstract Row |
ReadCommand.getRow(Table table) |
Row |
SliceByNamesReadCommand.getRow(Table table) |
Row |
SliceFromReadCommand.getRow(Table table) |
static Row |
SystemTable.readSchemaRow(java.lang.String ksName) |
static Row |
SystemTable.readSchemaRow(java.lang.String ksName,
java.lang.String cfName) |
Row |
ReadResponse.row() |
Modifier and Type | Method and Description |
---|---|
java.util.List<Row> |
ColumnFamilyStore.filter(ColumnFamilyStore.AbstractScanIterator rowIterator,
ExtendedFilter filter) |
static CloseableIterator<Row> |
RowIteratorFactory.getIterator(java.lang.Iterable<Memtable> memtables,
java.util.Collection<SSTableReader> sstables,
RowPosition startWith,
RowPosition stopAt,
QueryFilter filter,
ColumnFamilyStore cfs)
Get a row iterator over the provided memtables and sstables, between the provided keys
and filtered by the queryfilter.
|
java.util.List<Row> |
ColumnFamilyStore.getRangeSlice(java.nio.ByteBuffer superColumn,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter columnFilter,
java.util.List<IndexExpression> rowFilter) |
java.util.List<Row> |
ColumnFamilyStore.getRangeSlice(java.nio.ByteBuffer superColumn,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter columnFilter,
java.util.List<IndexExpression> rowFilter,
boolean countCQL3Rows,
boolean isPaging) |
java.util.List<Row> |
ColumnFamilyStore.search(java.util.List<IndexExpression> clause,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter dataFilter) |
java.util.List<Row> |
ColumnFamilyStore.search(java.util.List<IndexExpression> clause,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter dataFilter,
boolean countCQL3Rows) |
static java.util.List<Row> |
SystemTable.serializedSchema() |
static java.util.List<Row> |
SystemTable.serializedSchema(java.lang.String schemaCfName) |
Modifier and Type | Method and Description |
---|---|
static ReadResponse |
ReadVerbHandler.getResponse(ReadCommand command,
Row row) |
ReadCommand |
ReadCommand.maybeGenerateRetryCommand(RowDataResolver resolver,
Row row) |
ReadCommand |
SliceFromReadCommand.maybeGenerateRetryCommand(RowDataResolver resolver,
Row row) |
void |
ReadCommand.maybeTrim(Row row) |
void |
SliceFromReadCommand.maybeTrim(Row row) |
void |
Row.RowSerializer.serialize(Row row,
java.io.DataOutput dos,
int version) |
long |
Row.RowSerializer.serializedSize(Row row,
int version) |
Constructor and Description |
---|
ReadResponse(Row row) |
RowMutation(java.lang.String table,
Row row) |
Constructor and Description |
---|
RangeSliceReply(java.util.List<Row> rows) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Row> |
SecondaryIndexManager.search(java.util.List<IndexExpression> clause,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter dataFilter,
boolean countCQL3Rows)
Performs a search across a number of column indexes
TODO: add support for querying across index types
|
abstract java.util.List<Row> |
SecondaryIndexSearcher.search(java.util.List<IndexExpression> clause,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter dataFilter,
boolean countCQL3Rows) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Row> |
CompositesSearcher.search(java.util.List<IndexExpression> clause,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter dataFilter,
boolean countCQL3Rows) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Row> |
KeysSearcher.search(java.util.List<IndexExpression> clause,
AbstractBounds<RowPosition> range,
int maxResults,
IDiskAtomFilter dataFilter,
boolean countCQL3Rows) |
Modifier and Type | Method and Description |
---|---|
Row |
RowDataResolver.getData() |
Row |
RowDigestResolver.getData()
Special case of resolve() so that CL.ONE reads never throw DigestMismatchException in the foreground
|
Row |
RowDataResolver.resolve() |
Row |
RowDigestResolver.resolve() |
Modifier and Type | Method and Description |
---|---|
static java.util.List<Row> |
RangeSliceVerbHandler.executeLocally(RangeSliceCommand command) |
java.util.List<Row> |
RangeSliceResponseResolver.getData() |
static java.util.List<Row> |
StorageProxy.getRangeSlice(RangeSliceCommand command,
ConsistencyLevel consistency_level) |
static java.util.List<Row> |
StorageProxy.read(java.util.List<ReadCommand> commands,
ConsistencyLevel consistency_level)
Performs the actual reading of a row out of the StorageService, fetching
a specific set of column names from a given column family.
|
java.lang.Iterable<Row> |
RangeSliceResponseResolver.resolve() |
Copyright © 2013 The Apache Software Foundation