Skip to content

Commit

Permalink
Fix bug similar to one in tidyverse#1558
Browse files Browse the repository at this point in the history
  • Loading branch information
aguynamedryan committed Nov 22, 2024
1 parent efa8fe6 commit ca33c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/query-join.R
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ flatten_query.multi_join_query <- function(qry, query_list, con) {
query_list_new <- flatten_query(x, query_list, con)
qry$x <- get_subquery_name(x, query_list_new)

for (i in vctrs::vec_seq_along(qry$joins)) {
for (i in vctrs::vec_seq_along(qry$joins$table)) {
y <- qry$joins$table[[i]]
query_list_new <- flatten_query(y, query_list_new, con)
qry$joins$table[[i]] <- get_subquery_name(y, query_list_new)
Expand Down

0 comments on commit ca33c0f

Please sign in to comment.