Skip to content

Commit

Permalink
tuple no _
Browse files Browse the repository at this point in the history
  • Loading branch information
Larkooo committed Nov 29, 2024
1 parent a8afbcd commit be9c251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/torii/core/src/sql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ impl Sql {
Ty::Tuple(tuple) => {
for (idx, member) in tuple.iter().enumerate() {
let mut new_path = path.to_vec();
new_path.push(format!("_{}", idx));
new_path.push(idx.to_string());

self.add_columns_recursive(
&new_path,
Expand Down

0 comments on commit be9c251

Please sign in to comment.