Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Jul 16, 2024
1 parent 30758cc commit ac30c1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/src/optimizer/plan_node/stream_source_scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use crate::catalog::source_catalog::SourceCatalog;
use crate::optimizer::plan_node::expr_visitable::ExprVisitable;
use crate::optimizer::plan_node::utils::{childless_record, Distill};
use crate::optimizer::plan_node::{generic, ExprRewritable, StreamNode};
use crate::optimizer::property::Distribution;
use crate::optimizer::property::{Distribution, MonotonicityMap};
use crate::scheduler::SchedulerResult;
use crate::stream_fragmenter::BuildFragmentGraphState;
use crate::{Explain, TableCatalog};
Expand Down Expand Up @@ -75,7 +75,7 @@ impl StreamSourceScan {
core.catalog.as_ref().map_or(true, |s| s.append_only),
false,
FixedBitSet::with_capacity(core.column_catalog.len()),
Default::default(),
MonotonicityMap::new(),
);

Self { base, core }
Expand Down

0 comments on commit ac30c1f

Please sign in to comment.