We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d53da83 commit fb0f100Copy full SHA for fb0f100
datafusion/catalog/src/memory/table.rs
@@ -68,8 +68,9 @@ pub struct MemTable {
68
69
impl MemTable {
70
/// Create a new in-memory table from the provided schema and record batches.
71
- /// Requires at least one partition. To construct an empty `MemTable`, pass
72
- /// `vec![vec![]]` as the `partitions` argument, this represents one partition with
+ ///
+ /// Requires at least one partition. To construct an empty `MemTable`, pass
73
+ /// `vec![vec![]]` as the `partitions` argument, this represents one partition with
74
/// no batches.
75
pub fn try_new(schema: SchemaRef, partitions: Vec<Vec<RecordBatch>>) -> Result<Self> {
76
if partitions.is_empty() {
0 commit comments