Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Oct 29, 2024
1 parent f0526aa commit 10f76e6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/torii/grpc/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,13 +284,11 @@ impl DojoWorld {
None,
None,
)?;
println!("entity_query: {}", entity_query);

let rows = sqlx::query(&entity_query).bind(&models_str).fetch_all(&mut *tx).await?;

let mut arrays_rows = HashMap::new();
for (name, array_query) in arrays_queries {
println!("array_query: {}", array_query);
let array_rows =
sqlx::query(&array_query).bind(&models_str).fetch_all(&mut *tx).await?;
arrays_rows.insert(name, array_rows);
Expand Down

0 comments on commit 10f76e6

Please sign in to comment.