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
e5a28396
Commit
e5a28396
authored
7 years ago
by
Cam Saül
Browse files
Options
Downloads
Patches
Plain Diff
Fix backend behavior for nested query drag-to-filter
parent
5d04a058
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/query_processor/interface.clj
+5
-4
5 additions, 4 deletions
src/metabase/query_processor/interface.clj
test/metabase/query_processor_test/nested_queries_test.clj
+15
-0
15 additions, 0 deletions
test/metabase/query_processor_test/nested_queries_test.clj
with
20 additions
and
4 deletions
src/metabase/query_processor/interface.clj
+
5
−
4
View file @
e5a28396
...
...
@@ -231,9 +231,14 @@
field
:-
(
s/cond-pre
DateTimeField
FieldPlaceholder
)])
;; e.g. an absolute point in time (literal)
(
s/defrecord
DateTimeValue
[
value
:-
Timestamp
field
:-
DateTimeField
])
(
def
OrderableValue
"Schema for an instance of `Value` whose `:value` property is itself orderable (a datetime or number, i.e. a `OrderableValueLiteral`)."
(
s/named
(
s/cond-pre
DateTimeValue
RelativeDateTimeValue
(
s/constrained
Value
(
fn
[{
value
:value
}]
(
nil?
(
s/check
OrderableValueLiteral
value
)))))
...
...
@@ -244,10 +249,6 @@
(
s/named
(
s/constrained
Value
(
comp
string?
:value
))
"Value that is a string (Value whose :value is a string)"
))
;; e.g. an absolute point in time (literal)
(
s/defrecord
DateTimeValue
[
value
:-
Timestamp
field
:-
DateTimeField
])
(
defprotocol
^
:private
IDateTimeValue
(
unit
[
this
]
"Get the `unit` associated with a `DateTimeValue` or `RelativeDateTimeValue`."
)
...
...
This diff is collapsed.
Click to expand it.
test/metabase/query_processor_test/nested_queries_test.clj
+
15
−
0
View file @
e5a28396
...
...
@@ -416,3 +416,18 @@
:breakout
[[
:datetime-field
[
:field-literal
(
identifier
:checkins
:date
)
:type/Date
]
:month
]])
qp/process-query
:status
)))
;; make sure timeseries queries generated by "drag-to-filter" work correctly
(
expect
:completed
(
tt/with-temp
Card
[
card
(
mbql-card-def
:source-table
(
data/id
:checkins
))]
(
->
(
query-with-source-card
card
:aggregation
[[
:count
]]
:breakout
[[
:datetime-field
[
:field-literal
"DATE"
:type/Date
]
:week
]]
:filter
[
:between
[
:datetime-field
[
:field-literal
"DATE"
:type/Date
]
:month
]
"2014-02-01T00:00:00-08:00"
"2014-05-01T00:00:00-07:00"
])
qp/process-query
:status
)))
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