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.
OID
SELECT
1 parent e8dd622 commit f3752ebCopy full SHA for f3752eb
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