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
eef54d20
Commit
eef54d20
authored
9 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Remove metabase.driver.context namespace. Part of old QP implementation, no longer used
parent
54a7ac32
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/driver/context.clj
+0
-13
0 additions, 13 deletions
src/metabase/driver/context.clj
src/metabase/driver/generic_sql/util.clj
+1
-4
1 addition, 4 deletions
src/metabase/driver/generic_sql/util.clj
src/metabase/driver/sync/queries.clj
+7
-10
7 additions, 10 deletions
src/metabase/driver/sync/queries.clj
with
8 additions
and
27 deletions
src/metabase/driver/context.clj
deleted
100644 → 0
+
0
−
13
View file @
54a7ac32
(
ns
metabase.driver.context
)
;;; DEPRECATED !
;; The functionality in this namespace is part of some old QP stuff and no longer serves any important purpose.
;; TODO - Remove this namespace
(
def
^
:dynamic
*database*
"Current DB."
nil
)
(
def
^
:dynamic
*table*
"Current table."
nil
)
This diff is collapsed.
Click to expand it.
src/metabase/driver/generic_sql/util.clj
+
1
−
4
View file @
eef54d20
...
...
@@ -8,7 +8,6 @@
[
korma.db
:as
kdb
]
[
metabase.db
:refer
[
sel
]]
[
metabase.driver
:as
driver
]
[
metabase.driver.context
:as
context
]
[
metabase.driver.query-processor
:as
qp
]
(
metabase.models
[
database
:refer
[
Database
]]
[
field
:refer
[
Field
]]
...
...
@@ -83,9 +82,7 @@
[
table-id
]
{
:pre
[(
integer?
table-id
)]
:post
[(
map?
%
)]}
(
korma-entity
(
or
(
and
(
=
(
:id
context/*table*
)
table-id
)
context/*table*
)
(
sel
:one
Table
:id
table-id
)
(
korma-entity
(
or
(
sel
:one
Table
:id
table-id
)
(
throw
(
Exception.
(
format
"Table with ID %d doesn't exist!"
table-id
))))))
(
defn
castify-field
...
...
This diff is collapsed.
Click to expand it.
src/metabase/driver/sync/queries.clj
+
7
−
10
View file @
eef54d20
(
ns
metabase.driver.sync.queries
"Predefined QP queries that can be used to get metadata for syncing."
(
:require
[
metabase.driver
:as
driver
]
[
metabase.driver.context
:as
context
]))
(
:require
[
metabase.driver
:as
driver
]))
(
defn-
qp-query
[
table
query-dict
]
(
binding
[
context/*table*
table
context/*database*
@
(
:db
table
)]
(
->
(
driver/process-query
{
:database
(
:db_id
table
)
:type
"query"
:query
(
assoc
query-dict
:source_table
(
:id
table
))})
:data
:rows
)))
(
->
(
driver/process-query
{
:database
(
:db_id
table
)
:type
"query"
:query
(
assoc
query-dict
:source_table
(
:id
table
))})
:data
:rows
))
(
defn
table-row-count
"Fetch the row count of TABLE via the query processor."
...
...
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