Skip to content

Commit

Permalink
Fix cI
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Dec 28, 2024
1 parent 5b0fd54 commit 2450294
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/swmr/tests/dynamic/insert.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use dbutils::{buffer::VacantBuffer, state::Active, types::Type};

#[cfg(feature = "std")]
use std::thread::spawn;

use crate::{
Expand All @@ -16,7 +17,7 @@ use crate::dynamic::BoundedTable;
#[cfg(feature = "unbounded")]
use crate::dynamic::UnboundedTable;

use super::{Person, MB};
use super::*;

#[cfg(feature = "std")]
fn concurrent_basic<M>(mut w: OrderWal<M>)
Expand Down
3 changes: 2 additions & 1 deletion src/swmr/tests/generic/insert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use dbutils::{
types::{MaybeStructured, Type},
};

#[cfg(feature = "std")]
use std::thread::spawn;

use crate::{
Expand All @@ -21,7 +22,7 @@ use crate::generic::BoundedTable;
#[cfg(feature = "unbounded")]
use crate::generic::UnboundedTable;

use super::{Person, MB};
use super::*;

#[cfg(feature = "std")]
fn concurrent_basic<M>(mut w: OrderWal<M>)
Expand Down

0 comments on commit 2450294

Please sign in to comment.