Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions datafusion/core/src/datasource/memory_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ mod tests {
/// Returns the value of results. For example, returns 6 given the following
///
/// ```text
/// +-------+,
/// | count |,
/// +-------+,
/// | 6 |,
/// +-------+,
/// +-------+
/// | count |
/// +-------+
/// | 6 |
/// +-------+
/// ```
fn extract_count(res: Vec<RecordBatch>) -> u64 {
assert_eq!(res.len(), 1, "expected one batch, got {}", res.len());
Expand Down
10 changes: 5 additions & 5 deletions datafusion/datasource/src/sink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,11 +385,11 @@ impl ExecutionPlan for DataSinkExec {
/// Create a output record batch with a count
///
/// ```text
/// +-------+,
/// | count |,
/// +-------+,
/// | 6 |,
/// +-------+,
/// +-------+
/// | count |
/// +-------+
/// | 6 |
/// +-------+
/// ```
fn make_count_batch(count: u64) -> RecordBatch {
let array = Arc::new(UInt64Array::from(vec![count])) as ArrayRef;
Expand Down
10 changes: 5 additions & 5 deletions datafusion/session/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,11 +335,11 @@ pub trait TableProvider: Any + Debug + Sync + Send {
/// column called "count" such as the following
///
/// ```text
/// +-------+,
/// | count |,
/// +-------+,
/// | 6 |,
/// +-------+,
/// +-------+
/// | count |
/// +-------+
/// | 6 |
/// +-------+
/// ```
///
/// # See Also
Expand Down
Loading