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
7957c1d3
Commit
7957c1d3
authored
8 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Patches
Plain Diff
comment indentation.
parent
0e339238
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.clj
+6
-6
6 additions, 6 deletions
src/metabase/driver.clj
with
6 additions
and
6 deletions
src/metabase/driver.clj
+
6
−
6
View file @
7957c1d3
...
...
@@ -110,14 +110,14 @@
(
execute-query
^
java.util.Map
[
this,
^
Map
query
]
"Execute a query against the database and return the results.
The query passed in will contain:
The query passed in will contain:
{:database ^DatabaseInstance
:native {... driver specific query form such as one returned from a call to `mbql->native` ...}
:settings {:report-timezone \"US/Pacific\"
:other-setting \"and its value\"}}
Results should look like:
Results should look like:
{:columns [\"id\", \"name\"]
:rows [[1 \"Lucky Bird\"]
...
...
@@ -147,12 +147,12 @@
(
mbql->native
^
java.util.Map
[
this,
^
Map
query
]
"Transpile an MBQL structured query into the appropriate native query form.
The input query will be a fully expanded MBQL query (https://github.com/metabase/metabase/wiki/Expanded-Queries) with
all the necessary pieces of information to build a properly formatted native query for the given database.
The input query will be a fully expanded MBQL query (https://github.com/metabase/metabase/wiki/Expanded-Queries) with
all the necessary pieces of information to build a properly formatted native query for the given database.
The result of this function will be passed directly into calls to `execute-query`.
The result of this function will be passed directly into calls to `execute-query`.
For example, a driver like Postgres would build a valid SQL expression and return a map such as:
For example, a driver like Postgres would build a valid SQL expression and return a map such as:
{:query \"SELECT * FROM my_table\"}"
)
...
...
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