Skip to content

Commit

Permalink
Move core kmerge_batch into backend
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Oct 21, 2023
1 parent 05a1cc9 commit dde15bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions nautilus_core/persistence/src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
// limitations under the License.
// -------------------------------------------------------------------------------------------------

pub mod kmerge_batch;
pub mod session;
6 changes: 3 additions & 3 deletions nautilus_core/persistence/src/backend/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ use nautilus_core::ffi::cvec::CVec;
use nautilus_model::data::{Data, HasTsInit};
use pyo3::prelude::*;

use crate::{
arrow::{DataStreamingError, DecodeDataFromRecordBatch, EncodeToRecordBatch, WriteStream},
kmerge_batch::{EagerStream, ElementBatchIter, KMerge},
use super::kmerge_batch::{EagerStream, ElementBatchIter, KMerge};
use crate::arrow::{
DataStreamingError, DecodeDataFromRecordBatch, EncodeToRecordBatch, WriteStream,
};

#[derive(Debug, Default)]
Expand Down
1 change: 0 additions & 1 deletion nautilus_core/persistence/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

pub mod arrow;
pub mod backend;
mod kmerge_batch;

#[cfg(feature = "python")]
pub mod python;

0 comments on commit dde15bb

Please sign in to comment.