We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb30ab commit a426f6bCopy full SHA for a426f6b
lib/arjdbc/postgresql/adapter.rb
@@ -345,7 +345,7 @@ def enum_types
345
type.typname AS name,
346
type.OID AS oid,
347
n.nspname AS schema,
348
- string_agg(enum.enumlabel, ',' ORDER BY enum.enumsortorder) AS value
+ array_agg(enum.enumlabel ORDER BY enum.enumsortorder) AS value
349
FROM pg_enum AS enum
350
JOIN pg_type AS type ON (type.oid = enum.enumtypid)
351
JOIN pg_namespace n ON type.typnamespace = n.oid
0 commit comments