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
eccd5cdd
Commit
eccd5cdd
authored
8 years ago
by
Cam Saül
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2920 from crate/m/remove-custom-exec-query
remove custom query executor
parents
b4f9f267
c6e87d2c
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
project.clj
+2
-2
2 additions, 2 deletions
project.clj
src/metabase/driver/crate.clj
+0
-1
0 additions, 1 deletion
src/metabase/driver/crate.clj
src/metabase/driver/crate/query_processor.clj
+2
-25
2 additions, 25 deletions
src/metabase/driver/crate/query_processor.clj
with
4 additions
and
28 deletions
project.clj
+
2
−
2
View file @
eccd5cdd
...
...
@@ -65,8 +65,8 @@
[
org.yaml/snakeyaml
"1.17"
]
; YAML parser (required by liquibase)
[
org.xerial/sqlite-jdbc
"3.8.11.2"
]
; SQLite driver
[
postgresql
"9.3-1102.jdbc41"
]
; Postgres driver
[
io.crate/crate-jdbc
"1.1
1.0
"
]
; Crate JDBC driver (DON'T UPDATE THESE YET -- THEY CAUSE TESTS TO FAIL!)
[
io.crate/crate-client
"0.54.
7
"
]
; Crate Java client (used by Crate JDBC)
[
io.crate/crate-jdbc
"1.1
2.3
"
]
; Crate JDBC driver (DON'T UPDATE THESE YET -- THEY CAUSE TESTS TO FAIL!)
[
io.crate/crate-client
"0.54.
11
"
]
; Crate Java client (used by Crate JDBC)
[
prismatic/schema
"1.1.2"
]
; Data schema declaration and validation library
[
ring/ring-jetty-adapter
"1.5.0"
]
; Ring adapter using Jetty webserver (used to run a Ring server for unit tests)
[
ring/ring-json
"0.4.0"
]
; Ring middleware for reading/writing JSON automatically
...
...
This diff is collapsed.
Click to expand it.
src/metabase/driver/crate.clj
+
0
−
1
View file @
eccd5cdd
...
...
@@ -71,7 +71,6 @@
:details-fields
(
constantly
[{
:name
"hosts"
:display-name
"Hosts"
:default
"//localhost:4300"
}])
:execute-query
qp/execute-query
:features
(
fn
[
this
]
(
set/difference
(
sql/features
this
)
#
{
:foreign-keys
}))})
...
...
This diff is collapsed.
Click to expand it.
src/metabase/driver/crate/query_processor.clj
+
2
−
25
View file @
eccd5cdd
(
ns
metabase.driver.crate.query-processor
(
:require
[
clojure.java.jdbc
:as
jdbc
]
[
honeysql.helpers
:as
h
]
[
metabase.driver.generic-sql
:as
sql
]
(
:require
[
honeysql.helpers
:as
h
]
[
metabase.driver.generic-sql.query-processor
:as
qp
]
[
metabase.query-processor.interface
:as
i
])
(
:import
(
metabase.query_processor.interface
ComparisonFilter
CompoundFilter
)))
[
metabase.query-processor.interface
:as
i
]))
(
defn-
rewrite-between
"Rewrite [:between <field> <min> <max>] -> [:and [:>= <field> <min>] [:<= <field> <max>]]"
...
...
@@ -32,23 +29,3 @@
"Apply custom generic SQL filter. This is the place to perform query rewrites."
[
_
honeysql-form
{
clause
:filter
}]
(
h/where
honeysql-form
(
filter-clause->predicate
clause
)))
(
defn
execute-query
"Execute a query against Crate database.
We specifically write out own `execute-query` function to avoid the autoCommit(false) call."
[
_
{
:keys
[
database
]
,
{
sql
:query,
params
:params
}
:native
}]
(
try
(
let
[
db-conn
(
sql/db->jdbc-connection-spec
database
)]
(
jdbc/with-db-connection
[
t-conn
db-conn
]
(
let
[
statement
(
if
params
(
into
[
sql
]
params
)
sql
)
[
columns
&
rows
]
(
jdbc/query
t-conn
statement
{
:identifiers
identity,
:as-arrays?
true
})]
{
:rows
(
or
rows
[])
:columns
columns
})))
(
catch
java.sql.SQLException
e
(
let
[
^
String
message
(
or
(
->>
(
.getMessage
e
)
; error message comes back like 'Column "ZID" not found; SQL statement: ... [error-code]' sometimes
(
re-find
#
"^(.*);"
)
; the user already knows the SQL, and error code is meaningless
second
)
; so just return the part of the exception that is relevant
(
.getMessage
e
))]
(
throw
(
Exception.
message
))))))
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