Skip to content

Commit 33a8876

Browse files
committed
Update to columnar 0.10 and make flush public
1 parent 118db09 commit 33a8876

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ resolver = "2"
1414
edition = "2021"
1515

1616
[workspace.dependencies]
17-
columnar = "0.9"
17+
columnar = "0.10"
1818

1919
[workspace.lints.clippy]
2020
type_complexity = "allow"

timely/src/dataflow/operators/core/input.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ impl<T: Timestamp, CB: ContainerBuilder> Handle<T, CB> {
366366

367367
/// Flush all contents and distribute to downstream operators.
368368
#[inline]
369-
fn flush(&mut self) {
369+
pub fn flush(&mut self) {
370370
while let Some(container) = self.builder.finish() {
371371
Self::send_container(container, &mut self.buffer, &mut self.pushers, &self.now_at);
372372
}

0 commit comments

Comments
 (0)