Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
57cd068c
Unverified
Commit
57cd068c
authored
1 year ago
by
Case Nelson
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
[MLv2] Handle removing multiple dependent joins (#35109)
parent
19f6d315
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/metabase/lib/remove_replace.cljc
+6
-5
6 additions, 5 deletions
src/metabase/lib/remove_replace.cljc
src/metabase/lib/util.cljc
+2
-1
2 additions, 1 deletion
src/metabase/lib/util.cljc
test/metabase/lib/remove_replace_test.cljc
+11
-0
11 additions, 0 deletions
test/metabase/lib/remove_replace_test.cljc
with
19 additions
and
6 deletions
src/metabase/lib/remove_replace.cljc
+
6
−
5
View file @
57cd068c
...
...
@@ -60,7 +60,8 @@
stage-number
lib.util/remove-clause
[
:order-by
]
(
get-in
(
lib.util/query-stage
query
stage-number
)
[
:order-by
order-by-idx
]))
(
get-in
(
lib.util/query-stage
query
stage-number
)
[
:order-by
order-by-idx
])
stage-number
)
query
))
(
defn-
remove-replace-location
...
...
@@ -116,7 +117,7 @@
(
stage-paths
query
stage-number
))]
(
reduce
(
fn
[
query
[
location
target-clause
]]
(
remove-replace-location
query
stage-number
unmodified-query-for-stage
location
target-clause
lib.util/remove-clause
))
(
remove-replace-location
query
stage-number
unmodified-query-for-stage
location
target-clause
#
(
lib.util/remove-clause
%1
%2
%3
stage-number
)
))
query
to-remove
)))
...
...
@@ -150,7 +151,7 @@
(
lib.common/->op-arg
replacement
))
remove-replace-fn
(
if
replace?
#
(
lib.util/replace-clause
%1
%2
%3
replacement-clause
)
lib.util/remove-clause
)
#
(
lib.util/remove-clause
%1
%2
%3
stage-number
)
)
changing-breakout?
(
=
[
:breakout
]
location
)
sync-breakout-ordering?
(
and
replace?
changing-breakout?
...
...
@@ -343,10 +344,10 @@
(
not-empty
(
filterv
#
(
not
(
dependent-join?
%
join-alias
))
joins
))))
(
catch
#
?
(
:clj
Exception
:cljs
:default
)
e
(
let
[{
:keys
[
error
stage
join
]
}
(
ex-data
e
)]
(
let
[{
:keys
[
error
join
]
error-stage-number
:stage-number
}
(
ex-data
e
)]
(
if
(
=
error
::lib.util/cannot-remove-final-join-condition
)
(
->
query
(
remove-join
(
u/index-of
#
{
stage
}
(
:stages
query
))
join
)
(
remove-join
error-stage-number
join
)
(
remove-join
stage-number
join-spec
))
(
throw
e
)))))))
...
...
This diff is collapsed.
Click to expand it.
src/metabase/lib/util.cljc
+
2
−
1
View file @
57cd068c
...
...
@@ -115,7 +115,7 @@
If `location` contains no clause with `target-clause` no removal happens.
If the the location is empty, dissoc it from stage.
For the [:fields] location if only expressions remain, dissoc from stage."
[
stage
location
target-clause
]
[
stage
location
target-clause
stage-number
]
{
:pre
[(
clause?
target-clause
)]}
(
if-let
[
target
(
get-in
stage
location
)]
(
let
[
target-uuid
(
lib.options/uuid
target-clause
)
...
...
@@ -133,6 +133,7 @@
{
:error
::cannot-remove-final-join-condition
:conditions
(
get-in
stage
location
)
:join
(
get-in
stage
(
pop
location
))
:stage-number
stage-number
:stage
stage
}))
(
=
[
:joins
:fields
]
[
first-loc
last-loc
])
...
...
This diff is collapsed.
Click to expand it.
test/metabase/lib/remove_replace_test.cljc
+
11
−
0
View file @
57cd068c
...
...
@@ -938,3 +938,14 @@
first
:joins
(
map
:alias
))))))))
(
deftest
^
:parallel
remove-first-in-long-series-of-join-test
(
testing
"Recursive join removal (#35049)"
(
let
[
query
(
->
(
lib/query
meta/metadata-provider
(
meta/table-metadata
:reviews
))
(
lib/join
(
meta/table-metadata
:products
))
(
lib/join
(
lib/join-clause
(
meta/table-metadata
:orders
)
[(
lib/=
(
lib/with-join-alias
(
meta/field-metadata
:products
:id
)
"Products"
)
(
lib/with-join-alias
(
meta/field-metadata
:orders
:product-id
)
"Orders"
))]))
(
lib/join
(
meta/table-metadata
:people
)))]
(
is
(
=?
{
:stages
[(
complement
:joins
)]}
(
lib/remove-clause
query
-1
(
first
(
lib/joins
query
))))))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment