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
2221c4fe
Commit
2221c4fe
authored
10 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
only add implicit order_by if there is no explicit order_by
parent
1d8f4b75
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/driver/generic_sql/query_processor.clj
+23
-11
23 additions, 11 deletions
src/metabase/driver/generic_sql/query_processor.clj
test/metabase/driver/generic_sql/query_processor_test.clj
+19
-1
19 additions, 1 deletion
test/metabase/driver/generic_sql/query_processor_test.clj
with
42 additions
and
12 deletions
src/metabase/driver/generic_sql/query_processor.clj
+
23
−
11
View file @
2221c4fe
...
...
@@ -16,21 +16,26 @@
(
declare
apply-form
log-query
)
(
def
^
{
:dynamic
true,
:private
true
}
*query*
"Query dictionary that we're currently processing"
nil
)
;; ## Public Functions
(
defn
process
"Convert QUERY into a korma `select` form."
[{{
:keys
[
source_table
]
:as
query
}
:query
}]
(
when-not
(
zero?
source_table
)
(
let
[
forms
(
->>
(
map
apply-form
query
)
; call `apply-form` for each clause and strip out nil results
(
filter
identity
)
(
mapcat
(
fn
[
form
]
(
if
(
vector?
form
)
form
; some `apply-form` implementations return a vector of multiple korma forms; if only one was
[
form
])))
; returned wrap it in a vec so `mapcat` can build a flattened sequence of forms
doall
)]
(
when
(
config/config-bool
:mb-db-logging
)
(
log-query
query
forms
))
`
(
let
[
entity
#
(
table-id->korma-entity
~
source_table
)]
(
select
entity
#
~@
forms
)))))
(
binding
[
*query*
query
]
(
let
[
forms
(
->>
(
map
apply-form
query
)
; call `apply-form` for each clause and strip out nil results
(
filter
identity
)
(
mapcat
(
fn
[
form
]
(
if
(
vector?
form
)
form
; some `apply-form` implementations return a vector of multiple korma forms; if only one was
[
form
])))
; returned wrap it in a vec so `mapcat` can build a flattened sequence of forms
doall
)]
(
when
(
config/config-bool
:mb-db-logging
)
(
log-query
query
forms
))
`
(
let
[
entity
#
(
table-id->korma-entity
~
source_table
)]
(
select
entity
#
~@
forms
))))))
(
defn
process-structured
...
...
@@ -92,10 +97,17 @@
(
match
field-ids
[]
nil
; empty clause
[
nil
]
nil
; empty clause
_
(
let
[
field-names
(
map
field-id->kw
field-ids
)]
_
(
let
[
field-names
(
map
field-id->kw
field-ids
)
order-by-field-names
(
some->>
(
:order_by
*query*
)
; get set of names of all fields specified in `order_by`
(
map
first
)
(
map
field-id->kw
)
set
)]
`
[(
group
~@
field-names
)
(
fields
~@
field-names
)
(
order
~@
field-names
:ASC
)])))
~@
(
->>
field-names
; Add an implicit `order :ASC` clause for every field specified in `breakout`
(
filter
(
complement
(
partial
contains?
order-by-field-names
)))
; that is *not* specified *explicitly* in `order_by`.
(
map
(
fn
[
field-name
]
`
(
order
~
field-name
:ASC
))))])))
;; ### `:fields`
;; ex.
...
...
This diff is collapsed.
Click to expand it.
test/metabase/driver/generic_sql/query_processor_test.clj
+
19
−
1
View file @
2221c4fe
...
...
@@ -332,7 +332,25 @@
:order_by
[[(
field->id
:checkins
:user_id
)
"ascending"
]]
:limit
nil
}}))
;; ## "BREAKOUT" - MULTIPLE COLUMNS
;; ## "BREAKOUT" - MULTIPLE COLUMNS W/ IMPLICT "ORDER_BY"
;; Fields should be implicitly ordered :ASC for all the fields in `breakout` that are not specified in `order_by`
(
expect
{
:status
:completed,
:row_count
10
,
:data
{
:rows
[[
1
1
1
]
[
5
1
1
]
[
7
1
1
]
[
10
1
1
]
[
13
1
1
]
[
16
1
1
]
[
26
1
1
]
[
31
1
1
]
[
35
1
1
]
[
36
1
1
]]
,
:columns
[
"VENUE_ID"
"USER_ID"
"count"
]
,
:cols
[{
:special_type
"fk"
,
:base_type
"IntegerField"
,
:description
nil,
:name
"VENUE_ID"
,
:table_id
(
table->id
:checkins
)
,
:id
(
field->id
:checkins
:venue_id
)}
{
:special_type
"fk"
,
:base_type
"IntegerField"
,
:description
nil,
:name
"USER_ID"
,
:table_id
(
table->id
:checkins
)
,
:id
(
field->id
:checkins
:user_id
)}
{
:base_type
"IntegerField"
,
:special_type
"number"
,
:name
"count"
,
:id
nil,
:table_id
nil,
:description
nil
}]}}
(
process-and-run
{
:type
:query
:database
@
db-id
:query
{
:source_table
(
table->id
:checkins
)
:limit
10
:aggregation
[
"count"
]
:breakout
[(
field->id
:checkins
:user_id
)
(
field->id
:checkins
:venue_id
)]}}))
;; ## "BREAKOUT" - MULTIPLE COLUMNS W/ EXPLICIT "ORDER_BY"
;; `breakout` should not implicitly order by any fields specified in `order_by`
(
expect
{
:status
:completed,
:row_count
10
,
:data
{
:rows
[[
2
15
1
]
[
3
15
1
]
[
7
15
1
]
[
14
15
1
]
[
16
15
1
]
[
18
15
1
]
[
22
15
1
]
[
23
15
2
]
[
24
15
1
]
[
27
15
1
]]
,
...
...
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