Skip to content

Commit

Permalink
remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
jiacai2050 committed Nov 20, 2024
1 parent fa22563 commit e065ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion horaedb/metric_engine/src/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ impl Stream for MergeStream {
type Item = DfResult<RecordBatch>;

fn poll_next(mut self: Pin<&mut Self>, ctx: &mut Context) -> Poll<Option<Self::Item>> {
match dbg!(self.stream.poll_next_unpin(ctx)) {
match self.stream.poll_next_unpin(ctx) {
Poll::Pending => Poll::Pending,
Poll::Ready(None) => {
let value = if let Some(mut pending) = self.pending_batch.take() {
Expand Down
2 changes: 1 addition & 1 deletion horaedb/metric_engine/src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ impl CloudObjectStorage {
Arc::new(sort_exec),
self.num_primary_keys,
self.schema().fields.len() - 1,
0, // TODO: value_idx
0, // TODO: value_idx, not used now.
Arc::new(LastValue::new()),
);
Ok(Arc::new(merge_exec))
Expand Down

0 comments on commit e065ba7

Please sign in to comment.