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
9d451614
Commit
9d451614
authored
9 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
add :join-tables clause when applicable during expansion
parent
bd4c76e7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/metabase/driver/query_processor/expand.clj
+16
-8
16 additions, 8 deletions
src/metabase/driver/query_processor/expand.clj
with
16 additions
and
8 deletions
src/metabase/driver/query_processor/expand.clj
+
16
−
8
View file @
9d451614
...
...
@@ -91,7 +91,11 @@
(
m/filter-vals
identity
<>
))))
(
def
^
:private
^
:dynamic
*field-ids*
"Bound to an atom containing a set when a parsing function is ran"
"Bound to an atom containing a set of `Field` IDs referenced in the query being expanded."
nil
)
(
def
^
:private
^
:dynamic
*table-ids*
"Bound to an atom containing a set of `Table` IDs referenced by `Fields` in the query being expanded."
nil
)
(
defn-
resolve-fields
...
...
@@ -104,6 +108,7 @@
:special_type
:special-type
:base_type
:base-type
:table_id
:table-id
})))]
(
reset!
*table-ids*
(
set
(
map
:table-id
(
vals
fields
))))
;; This is performed depth-first so we don't end up walking the newly-created Field/Value objects
;; they may have nil values; this was we don't have to write an implementation of resolve-field for nil
(
walk/postwalk
#
(
resolve-field
%
fields
)
expanded-query-dict
))))
...
...
@@ -115,11 +120,13 @@
(
defn-
resolve-tables
"Resolve the `Tables` in an EXPANDED-QUERY-DICT."
[{{
source-table-id
:source-table
}
:query,
database-id
:database,
:as
expanded-query-dict
}]
;; TODO - this doesn't handle join tables yet
(
let
[
table
(
sel
:one
:fields
[
Table
:name
:id
]
:id
source-table-id
)]
(
->>
(
assoc-in
expanded-query-dict
[
:query
:source-table
]
table
)
(
walk/postwalk
#
(
resolve-table
%
{(
:id
table
)
table
})))))
[{{
source-table-id
:source-table
}
:query,
database-id
:database,
:as
expanded-query-dict
}
table-ids
]
(
let
[
table-id->table
(
sel
:many
:id->fields
[
Table
:name
:id
]
:id
[
in
table-ids
])
join-tables
(
vals
(
dissoc
table-id->table
source-table-id
))]
(
walk/postwalk
#
(
resolve-table
%
table-id->table
)
(
cond->
(
assoc-in
expanded-query-dict
[
:query
:source-table
]
(
table-id->table
source-table-id
))
;; If there are any Tables to join include them in a :join-tables clause
join-tables
(
assoc-in
[
:query
:join-tables
]
(
vec
join-tables
))))))
;; ## -------------------- Public Interface --------------------
...
...
@@ -127,12 +134,13 @@
(
defn
expand
"Expand a QUERY-DICT."
[
query-dict
]
(
binding
[
*field-ids*
(
atom
#
{})]
(
binding
[
*field-ids*
(
atom
#
{})
*table-ids*
(
atom
#
{})]
(
some->
query-dict
parse
(
resolve-fields
@
*field-ids*
)
resolve-database
resolve-tables
)))
(
resolve-tables
@
*table-ids*
)
)))
;; ## -------------------- Field + Value --------------------
...
...
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