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
5b0fbf73
Unverified
Commit
5b0fbf73
authored
2 years ago
by
metamben
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Support enum types in schemas not on the search_path (#23599)
parent
5104fccd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/metabase/driver/postgres.clj
+18
-8
18 additions, 8 deletions
src/metabase/driver/postgres.clj
with
18 additions
and
8 deletions
src/metabase/driver/postgres.clj
+
18
−
8
View file @
5b0fbf73
...
...
@@ -182,14 +182,18 @@
[
_
]
:monday
)
(
defn-
get-typenames
[{
:keys
[
nspname
typname
]}]
(
cond->
[
typname
]
(
not=
nspname
"public"
)
(
conj
(
format
"\"%s\".\"%s\""
nspname
typname
))))
(
defn-
enum-types
[
_driver
database
]
(
set
(
map
(
comp
keyword
:
typname
)
(
jdbc/query
(
sql-jdbc.conn/db->pooled-connection-spec
database
)
[(
str
"SELECT DISTINCT t.typname "
"FROM pg_enum
e "
"LEFT JOIN pg_type t
"
"
ON
t.oid
= e.enumtypid
"
)])))
)
(
into
#
{}
(
comp
(
mapcat
get-
typ
e
name
s
)
(
map
keyword
)
)
(
jdbc/query
(
sql-jdbc.conn/db->pooled-connection-spec
database
)
[(
str
"SELECT nspname, typnam
e "
"FROM pg_type t JOIN pg_namespace n ON n.oid = t.typnamespace
"
"WHERE
t.oid
IN (SELECT DISTINCT enumtypid FROM pg_enum e)
"
)])))
(
def
^
:private
^
:dynamic
*enum-types*
nil
)
...
...
@@ -264,6 +268,10 @@
[
_
_
expr
]
(
sql.qp/adjust-start-of-week
:postgres
(
partial
date-trunc
:week
)
expr
))
(
defn-
quoted?
[
database-type
]
(
and
(
str/starts-with?
database-type
"\""
)
(
str/ends-with?
database-type
"\""
)))
(
defmethod
sql.qp/->honeysql
[
:postgres
:value
]
[
driver
value
]
(
let
[[
_
value
{
base-type
:base_type,
database-type
:database_type
}]
value
]
...
...
@@ -272,7 +280,9 @@
:type/UUID
(
when
(
not=
""
value
)
; support is-empty/non-empty checks
(
UUID/fromString
value
))
:type/IPAddress
(
hx/cast
:inet
value
)
:type/PostgresEnum
(
hx/quoted-cast
database-type
value
)
:type/PostgresEnum
(
if
(
quoted?
database-type
)
(
hx/cast
database-type
value
)
(
hx/quoted-cast
database-type
value
))
(
sql.qp/->honeysql
driver
value
)))))
(
defmethod
sql.qp/->honeysql
[
:postgres
:median
]
...
...
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