We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
OID
SELECT
1 parent c751d8f commit 0b7471aCopy full SHA for 0b7471a
1 file changed
src/main/java/io/r2dbc/postgresql/codec/PostgresTypes.java
@@ -40,7 +40,7 @@ public class PostgresTypes {
40
public final static int NO_SUCH_TYPE = -1;
41
42
// parameterized with %s for the comparator (=, IN), %s for the actual criteria value and %s for a potential LIMIT 1 statement
43
- private static final String SELECT_PG_TYPE = "SELECT pg_type.* "
+ private static final String SELECT_PG_TYPE = "SELECT pg_type.oid, pg_type.* "
44
+ " FROM pg_catalog.pg_type "
45
+ " LEFT "
46
+ " JOIN (select ns.oid as nspoid, ns.nspname, r.r "
0 commit comments