Modules§
- DataFusion query engine related code in ths mod.
- Main export is the
StorageApiwhich implementsObjectStorewhich is used for data fusion query engibne. SinceStorageApiis only used asObjectStoretrait objects in the context of the query engine, only read methods are supported.
Structs§
- The “unit” data structure of the index. Represents a single partition of data for the given block range: from
lower_boundtolower_bound + blocks_per_partition(except for potentially the most recent partition, in which caseincompletewill be set totrue.) - Chain partition index is essentially just a group of
TablePartitionIndexs all backed by a shared sqlite store. - given a trait object implementing
TableApistream record batches viaTableApi::batch_for_blocknums. - Data structure for storing a table and its partitions (
BlockPartition) (ranged partition over block number.)
Enums§
- Specify a set of block numbers
- Owned version of
BlockNumSet
Traits§
- Trait defines the interface.
Functions§
- entrypoint for executing the CLI…