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
20d211bc
Commit
20d211bc
authored
8 years ago
by
Cam Saül
Browse files
Options
Downloads
Patches
Plain Diff
Handle ISODate() calls in Mongo native queries [ci drivers]
parent
6fdafd25
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.clj
+1
-0
1 addition, 0 deletions
src/metabase/driver.clj
src/metabase/driver/mongo/query_processor.clj
+33
-2
33 additions, 2 deletions
src/metabase/driver/mongo/query_processor.clj
test/metabase/driver/mongo_test.clj
+27
-2
27 additions, 2 deletions
test/metabase/driver/mongo_test.clj
with
61 additions
and
4 deletions
src/metabase/driver.clj
+
1
−
0
View file @
20d211bc
...
...
@@ -312,6 +312,7 @@
[
java.sql.Date
:type/Date
]
[
java.sql.Timestamp
:type/DateTime
]
[
java.util.Date
:type/DateTime
]
[
org.joda.time.DateTime
:type/DateTime
]
[
java.util.UUID
:type/Text
]
; shouldn't this be :type/UUID ?
[
clojure.lang.IPersistentMap
:type/Dictionary
]
[
clojure.lang.IPersistentVector
:type/Array
]
...
...
This diff is collapsed.
Click to expand it.
src/metabase/driver/mongo/query_processor.clj
+
33
−
2
View file @
20d211bc
...
...
@@ -6,6 +6,7 @@
[
clojure.walk
:as
walk
]
[
cheshire.core
:as
json
]
(
monger
[
collection
:as
mc
]
joda-time
; apparently if this is loaded Monger can handle JodaTime dates (?)
[
operators
:refer
:all
])
[
metabase.driver.mongo.util
:refer
[
with-mongo-connection
*mongo-connection*
values->base-type
]]
[
metabase.models.table
:refer
[
Table
]]
...
...
@@ -15,9 +16,10 @@
[
metabase.util
:as
u
])
(
:import
java.sql.Timestamp
java.util.Date
(
com.mongodb
CommandResult
DB
)
clojure.lang.PersistentArrayMap
(
com.mongodb
CommandResult
DB
)
org.bson.types.ObjectId
org.joda.time.DateTime
(
metabase.query_processor.interface
AgFieldRef
DateTimeField
DateTimeValue
...
...
@@ -378,6 +380,35 @@
v
)}))))
;;; ------------------------------------------------------------ Handling ISODate(...) forms ------------------------------------------------------------
;; In Mongo it's fairly common use ISODate(...) forms in queries, which unfortunately are not valid JSON,
;; and thus cannot be parsed by Cheshire. But we are clever so we will:
;;
;; 1) Convert forms like ISODate(...) to valid JSON forms like ["___ISODate", ...]
;; 2) Parse Normally
;; 3) Walk the parsed JSON and convert forms like [:___ISODate ...] to JodaTime dates
(
defn-
encoded-iso-date?
[
form
]
(
and
(
vector?
form
)
(
=
(
first
form
)
"___ISODate"
)))
(
defn-
maybe-decode-iso-date-fncall
[
form
]
(
if
(
encoded-iso-date?
form
)
(
DateTime.
(
second
form
))
form
))
(
defn-
decode-iso-date-fncalls
[
query
]
(
walk/postwalk
maybe-decode-iso-date-fncall
query
))
(
defn-
encode-iso-date-fncalls
"Replace occurances of `ISODate(...)` function calls (invalid JSON, but legal in Mongo)
with legal JSON forms like `[:___ISODate ...]` that we can decode later."
[
query-string
]
(
s/replace
query-string
#
"ISODate\(([^)]+)\)"
"[\"___ISODate\", $1]"
))
;;; ------------------------------------------------------------ Query Execution ------------------------------------------------------------
(
defn
mbql->native
"Process and run an MBQL query."
[{
database
:database,
{{
source-table-name
:name
}
:source-table
}
:query,
:as
query
}]
...
...
@@ -397,7 +428,7 @@
(
string?
collection
)
(
map?
database
)]}
(
let
[
query
(
if
(
string?
query
)
(
json/parse-string
query
keyword
)
(
decode-iso-date-fncalls
(
json/parse-string
(
encode-iso-date-fncalls
query
)
keyword
)
)
query
)
results
(
mc/aggregate
*mongo-connection*
collection
query
:allow-disk-use
true
)
...
...
This diff is collapsed.
Click to expand it.
test/metabase/driver/mongo_test.clj
+
27
−
2
View file @
20d211bc
...
...
@@ -11,8 +11,10 @@
[
metabase.query-processor-test
:refer
[
rows
]]
[
metabase.test.data
:as
data
]
[
metabase.test.data.datasets
:as
datasets
]
[
metabase.test.data.interface
:as
i
])
[
metabase.test.data.interface
:as
i
]
[
metabase.test.util
:as
tu
])
(
:import
org.bson.types.ObjectId
org.joda.time.DateTime
metabase.driver.mongo.MongoDriver
))
;; ## Logic for selectively running mongo
...
...
@@ -173,7 +175,6 @@
;;; Check that we support Mongo BSON ID and can filter by it (#1367)
(
i/def-database-definition
^
:private
with-bson-ids
[
"birds"
[{
:field-name
"name"
,
:base-type
:type/Text
}
...
...
@@ -186,3 +187,27 @@
(
rows
(
data/dataset
metabase.driver.mongo-test/with-bson-ids
(
data/run-query
birds
(
ql/filter
(
ql/=
$bird_id
"abcdefabcdefabcdefabcdef"
))))))
;;; ------------------------------------------------------------ Test that we can handle native queries with "ISODate(...)" forms (#3741) ------------------------------------------------------------
(
tu/resolve-private-vars
metabase.driver.mongo.query-processor
maybe-decode-iso-date-fncall
decode-iso-date-fncalls
encode-iso-date-fncalls
)
(
expect
"[{\"$match\":{\"date\":{\"$gte\":[\"___ISODate\", \"2012-01-01\"]}}}]"
(
encode-iso-date-fncalls
"[{\"$match\":{\"date\":{\"$gte\":ISODate(\"2012-01-01\")}}}]"
))
(
expect
(
DateTime.
"2012-01-01"
)
(
maybe-decode-iso-date-fncall
[
"___ISODate"
"2012-01-01"
]))
(
expect
[{
:$match
{
:date
{
:$gte
(
DateTime.
"2012-01-01"
)}}}]
(
decode-iso-date-fncalls
[{
:$match
{
:date
{
:$gte
[
"___ISODate"
"2012-01-01"
]}}}]))
(
datasets/expect-with-engine
:mongo
5
(
count
(
rows
(
qp/process-query
{
:native
{
:query
"[{\"$match\": {\"date\": {\"$gte\": ISODate(\"2015-12-20\")}}}]"
:collection
"checkins"
}
:type
:native
:database
(
:id
(
mongo-db
))}))))
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