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
de78ab28
Unverified
Commit
de78ab28
authored
7 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Fix fingerprinting Postgres table with time fields [ci drivers]
parent
2838711a
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/middleware/resolve.clj
+3
-2
3 additions, 2 deletions
src/metabase/query_processor/middleware/resolve.clj
test/metabase/driver/postgres_test.clj
+25
-0
25 additions, 0 deletions
test/metabase/driver/postgres_test.clj
with
28 additions
and
2 deletions
src/metabase/query_processor/middleware/resolve.clj
+
3
−
2
View file @
de78ab28
...
...
@@ -168,8 +168,9 @@
(
merge-non-nils
(
select-keys
this
[
:fk-field-id
:remapped-from
:remapped-to
:field-display-name
])))]
;; try to resolve the Field with the ones available in field-id->field
(
cond
(
or
(
isa?
base-type
:type/DateTime
)
(
isa?
special-type
:type/DateTime
))
(
and
(
or
(
isa?
base-type
:type/DateTime
)
(
isa?
special-type
:type/DateTime
))
(
not
(
isa?
base-type
:type/Time
)))
(
i/map->DateTimeField
{
:field
field
:unit
(
or
datetime-unit
:day
)})
; default to `:day` if a unit wasn't specified
...
...
This diff is collapsed.
Click to expand it.
test/metabase/driver/postgres_test.clj
+
25
−
0
View file @
de78ab28
...
...
@@ -277,3 +277,28 @@
(
expect-with-engine
:postgres
"UTC"
(
tu/db-timezone-id
))
;; Make sure we're able to fingerprint TIME fields (#5911)
(
expect-with-engine
:postgres
[
#
metabase.models.field.FieldInstance
{
:name
"start_time"
,
:fingerprint
{
:global
{
:distinct-count
1
}}}
#
metabase.models.field.FieldInstance
{
:name
"end_time"
,
:fingerprint
{
:global
{
:distinct-count
1
}}}
#
metabase.models.field.FieldInstance
{
:name
"reason"
,
:fingerprint
{
:global
{
:distinct-count
1
}
:type
{
:type/Text
{
:percent-json
0.0
:percent-url
0.0
:percent-email
0.0
:average-length
12.0
}}}}]
(
do
(
drop-if-exists-and-create-db!
"time_field_test"
)
(
let
[
details
(
i/database->connection-details
pg-driver
:db
{
:database-name
"time_field_test"
})]
(
jdbc/execute!
(
sql/connection-details->spec
pg-driver
details
)
[(
str
"CREATE TABLE toucan_sleep_schedule ("
" start_time TIME WITHOUT TIME ZONE NOT NULL, "
" end_time TIME WITHOUT TIME ZONE NOT NULL, "
" reason VARCHAR(256) NOT NULL"
");"
"INSERT INTO toucan_sleep_schedule (start_time, end_time, reason) "
" VALUES ('22:00'::time, '9:00'::time, 'Beauty Sleep');"
)])
(
tt/with-temp
Database
[
database
{
:engine
:postgres,
:details
(
assoc
details
:dbname
"time_field_test"
)}]
(
sync/sync-database!
database
)
(
db/select
[
Field
:name
:fingerprint
]
:table_id
(
db/select-one-id
Table
:db_id
(
u/get-id
database
)))))))
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