Skip to content

Commit

Permalink
refactor: move row_id to common (#8513)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanicky authored Mar 14, 2023
1 parent 9bf2e8c commit d06674b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/common/src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ pub mod iter_util;
pub mod ordered;
pub mod prost;
pub mod resource_util;
pub mod row_id;
pub mod scan_range;
pub mod schema_check;
pub mod sort_util;
Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion src/source/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ pub mod connector_source;
pub mod source_desc;
pub use source_desc::test_utils as connector_test_utils;
pub mod fs_connector_source;
pub mod row_id;
mod table;
2 changes: 1 addition & 1 deletion src/stream/src/executor/row_id_gen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use risingwave_common::buffer::Bitmap;
use risingwave_common::catalog::Schema;
use risingwave_common::util::epoch::UNIX_RISINGWAVE_DATE_EPOCH;
use risingwave_common::util::iter_util::ZipEqFast;
use risingwave_source::row_id::RowIdGenerator;
use risingwave_common::util::row_id::RowIdGenerator;

use super::{
expect_first_barrier, ActorContextRef, BoxedExecutor, Executor, PkIndices, PkIndicesRef,
Expand Down

0 comments on commit d06674b

Please sign in to comment.