Skip to content

Commit

Permalink
query result fix for migration
Browse files Browse the repository at this point in the history
from standalone to distributed deployments
  • Loading branch information
nikhilsinhaparseable committed Apr 30, 2024
1 parent b5fa070 commit 816e517
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server/src/query/stream_schema_provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,10 +328,9 @@ impl TableProvider for StandardTableProvider {
let obs = glob_storage
.get_objects(
Some(&path),
Box::new(|file_name| file_name.starts_with(".ingestor")),
Box::new(|file_name| file_name.ends_with("manifest.json")),
)
.await;

if let Ok(obs) = obs {
for ob in obs {
if let Ok(object_store_format) =
Expand Down

0 comments on commit 816e517

Please sign in to comment.