Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion nexus/db-queries/src/db/datastore/user_data_export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,10 @@ mod tests {
use std::net::Ipv6Addr;

const PROJECT_NAME: &str = "bobs-barrel-of-bits";
const LARGE_NUMBER_OF_ROWS: usize = 3000;

// Enough rows that CRDB's query planner will complain when full table
// scans are not allowed.
const LARGE_NUMBER_OF_ROWS: usize = 10;

#[tokio::test]
async fn test_resource_id_collision() {
Expand Down
Loading