Improve wording on code comment in PostgreSQLDialect
This commit is contained in:
parent
8e55dde340
commit
b3d0addaeb
|
@ -172,8 +172,8 @@ public class PostgreSQLDialect extends Dialect {
|
||||||
case BLOB:
|
case BLOB:
|
||||||
case CLOB:
|
case CLOB:
|
||||||
case NCLOB:
|
case NCLOB:
|
||||||
// use oid as the blob type on Postgres because
|
// use oid as the blob/clob type on Postgres because
|
||||||
// the JDBC driver is rubbish
|
// the JDBC driver doesn't allow using bytea/text through LOB APIs
|
||||||
return "oid";
|
return "oid";
|
||||||
// use bytea as the "long" binary type (that there is no
|
// use bytea as the "long" binary type (that there is no
|
||||||
// real VARBINARY type in Postgres, so we always use this)
|
// real VARBINARY type in Postgres, so we always use this)
|
||||||
|
|
Loading…
Reference in New Issue