pub async fn insert_with_deterministic_timestamps(
    table: &'static str,
    values: &'static str,
    server: &TestServer,
    now: Arc<Mutex<EpochMillis>>
) -> Result<(), Box<dyn Error>>
Expand description

Group commit will block writes until the current time has advanced. This can make performing inserts while using deterministic time difficult. This is a helper method to perform writes and advance the current time.