Skip to content

Commit fb0f100

Browse files
committed
fix format
Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
1 parent d53da83 commit fb0f100

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

datafusion/catalog/src/memory/table.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ pub struct MemTable {
6868

6969
impl MemTable {
7070
/// 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
71+
///
72+
/// Requires at least one partition. To construct an empty `MemTable`, pass
73+
/// `vec![vec![]]` as the `partitions` argument, this represents one partition with
7374
/// no batches.
7475
pub fn try_new(schema: SchemaRef, partitions: Vec<Vec<RecordBatch>>) -> Result<Self> {
7576
if partitions.is_empty() {

0 commit comments

Comments
 (0)