mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-06-01 21:00:38 +00:00
fix: parallel scan on multiple sources
This commit is contained in:
@@ -621,7 +621,7 @@ impl ScanInput {
|
||||
sources: Vec<Source>,
|
||||
semaphore: Arc<Semaphore>,
|
||||
) -> Result<Vec<Source>> {
|
||||
if sources.len() > 1 {
|
||||
if sources.len() <= 1 {
|
||||
return Ok(sources);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user